-
Notifications
You must be signed in to change notification settings - Fork 1
/
creators.html
114 lines (106 loc) · 4.25 KB
/
creators.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<link rel = "icon"
type = "image/png"
href = "resources/logo.png">
<link href="css/fancy.css" rel="stylesheet">
<link href="css/nav.css" rel="stylesheet">
<meta charset="UTF-8" />
<meta name="viewport" content="width=, initial-scale=1.0" />
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>About The Creators</title>
</head>
<body>
<section class="navigation">
<div class="navigation-inner">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">
<img src="resources/logo.png" width="100px">Essential Hours</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse navbarNav justify-content-end">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="map">Map</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index">COVID-19</a>
</li>
<li class="nav-item">
<a class="nav-link" href="citations">Works Cited</a>
</li>
</ul>
</div>
</nav>
</div>
</section>
<div class="header">
<h1>
About The Creators
</h1>
</div>
<div class="people-holder row">
<div class="person col">
<div class="person-inner">
<h2 class="person-name">
Khushi Darji
</h2>
<p>
Hi! I'm from New Jersey, and I'm a senior in high school. I've had some experience in Java, HTML, and CSS,
but I joined this hackathon to learn more. I was luckily able to find people who were eager to
learn just like me, and we decided to create this website due to recent circumstances.
</p>
</div>
</div>
<div class="person col">
<div class="person-inner">
<h2 class="person-name">
Yuxi Qin
</h2>
<img src="resources/yuxi.jpg" width="300" height="350">
<p>
Hey, I'm from Windsor, Ontario. I have intermediate experience with Python and HTML/CSS, and basic experience with Arduino and Javascript. I'm always looking to learn and gain more experience.
Find me at <a href="https://yuxiqin.me">yuxiqin.me</a>.
</p>
</div>
</div>
<div class="person col">
<div class="person-inner">
<h2 class="person-name">
Maya Tomarchio
</h2>
<img
src="resources/maya.jpg"
width="400"
height="300"
/>
<p>
Hi! I am a 16 year old Sophomore from Solon High School. I am interested in Java/Javascript and I will be studying AP Computer Science next year. I also love Volleyball, guitar and singing in my free time!
</p>
</div>
</div>
<div class="person col">
<div class="person-inner">
<h2 class="person-name">
Claudia
</h2>
<p>
Hello! I am a junior from Connecticut. It was great to learn more about HTML/CSS through this hackathon project. Recently, I took AP Computer Science A and it was exciting to work with something front-end and meet new people.
</p>
</div>
</div>
</div>
</div>
</body>
<br>
<br>
<button>
<a href="map.html">Back</a>
</button>
</html>