-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
51 lines (51 loc) · 1.88 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About: A Sophmore Project</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<nav>
<div>
<div class="brand">
<a href="sneakers.html">Sneakers</a>
</div>
<ul>
<li><a href="culture.html">Culture</a></li>
<li><a href="sneakerheads.html">SneakerHeads</a></li>
<li><a href="hypebeast.html">HypeBeast</a></li>
<li><a href="history.html">History</a></li>
<li class="active"><a href="about.html">About Us</a></li>
<li><a href="photos.html">Photos</a></li>
</ul>
</div>
</nav>
<section class="team">
<div class="left">
<div class="rone">
<img src="photos/abdel.jpg">
</div><br><br>
<div class="rtwo">
<img src="photos/julian.jpg">
</div><br><br>
<div class="rthree">
<img src="photos/chris.jpg">
</div>
</div>
<div class="right">
<div class="pone">
<p>Abdel Mouliom is a Sophomore at North Carolina A&T University. He is 19 years old and is also part of the Reserve Officer Training Corps program. </p>
</div><br><br>
<div class="ptwo">
<p>Julian Mccrey is a Sophomore at North Carolina A&T University. He is from Charlotte North Carolina and he was inspired by his father who does I.T. as a career. </p>
</div><br>
<div class="pthree">
<p>Christopher Jacks is a Sophomore at North Carolina A&T University. He is 19 years old and is also part of the Marching Band. He had an internship with Cisco over the summer.</p>
</div>
</div>
</section>
</body>
</html>