-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (44 loc) · 1.62 KB
/
index.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
<!Doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Petit+Formal+Script" rel="stylesheet">
<title>Home</title>
</head>
<body>
<!-- Where our nav bar will be located -->
<header>
<nav class="navigation-bar">
<a href="index.html">
<img class="logo" src="https://cdn3.iconfinder.com/data/icons/travel-flat-7/64/soft_serve_ice_cream-food-sweet-summer-summertime-dessert-512.png" alt="Main logo">
</a>
<ul>
<li><a href="index.html" target="">Home</a></li>
<li><a href="index2.html" target="">About</a></li>
<li><a href="index3.html" target="">Flavors</a></li>
<li><a href="index4.html" target="">Contact</a></li>
</ul>
</nav>
</header>
<div id="hasImage">
<div class="content">
<h1>Selected Flavors</h1>
<h3 style="margin-bottom:0">Induldge a little, but not too much</h3>
<h6 style="margin:0">Sorry about that</h6>
<hr>
<a href="index3.html" class="button button1">Get Started</a>
</div>
</div>
<footer>
<div class="footer">
<ul>
<li> <a href="index4.html">Privacy Policy</a></li>
<li> <a href="index4.html">Terms of Use</a></li>
<li> <a href="index4.html">Sponsers</a></li>
<li><a href="index4.html">Location</a></li>
</ul>
<p>© 2019 The Selectors</p>
</div>
</footer>
</body>
</html>