-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (55 loc) · 1.46 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="eng">
<head>
<title>S&K</title>
<meta charset="UTF-8">
<script src= "script.js" defer></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav>
<!-- This is the logo bar of the website -->
<div class="logo">
<!-- this tells html to go to the img folder and draw the image -->
<img src= "img/logo.png">
</div>
<!-- This is the drop down menu in the nav bar -->
<div class="menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Mens</a>
<ul>
<li><a href="#">Shirts</a></li>
<li><a href="#">Pants</a></li>
<li><a href="#">Footwear</a></li>
</ul>
</li>
<li><a href="#">Womens</a>
<ul>
<li><a href="#">Shirts</a></li>
<li><a href="#">Pants</a></li>
<li><a href="#">Footwear</a></li>
<li><a href="#">Dresses</a></li>
<li><a href="#">Lingerie</a></li>
</ul>
</li>
<li><a href="#">Specials</a>
<ul>
<li><a href="#">Kids</a></li>
<li><a href="#">Summer</a></li>
<li><a href="#">Weekly</a></li>
</ul>
</li>
<li><a href="#">Search</a></li>
</ul>
</div>
</nav>
<figure class="content">
<img src="img/main.jpg">
<br />
<figcaption id="caption"><strong>ATTENTION!</strong> Please do not click the magic circle!</figcaption>
</figure>
</body>
<!-- This is the footer of the webpage -->
<footer class = "footer">Copyright</footer>
</html>