-
Notifications
You must be signed in to change notification settings - Fork 0
/
sneakers.html
33 lines (33 loc) · 1.22 KB
/
sneakers.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
<!DOCTYPE html>
<html>
<head>
<title>Sneakers Home: 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><a href="about.html">About Us</a></li>
<li><a href="photos.html">Photos</a></li>
</ul>
</div>
</nav>
<section class="home">
<h1>Sneakers: Influence on Culture</h1>
<h2>How it impacts the community and people</h2>
<div class="fill"></div>
<p>Learn about the <a href="culture.html">culture</a>, <a href="sneakerheads.html">sneakerheads</a>, <a href="hypebeast.html">hypebeast</a>, and the <a href="history.html">history</a> of sneakers.</p>
</section>
</body>
</html>