-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (102 loc) · 2.98 KB
/
index.html
File metadata and controls
140 lines (102 loc) · 2.98 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Secret Agent Supply Inc.</title>
<link rel="stylesheet" type="text/css" href="Resources\CSS\reset.css">
<link rel="stylesheet" type="text/css" href="Resources\CSS\style.css">
</head>
<body>
<page id="page" class="flex-container">
<!-- Section - Header -->
<header>
<!-- Notes to self: the div below is the container which limits the width to 960px. -->
<div class="container">
<div id="headerlogo">
<img src="./resources/logo.png" alt="logo">
<h3>SECRET AGENT SUPPLY INC.</h3>
</div>
</div>
</header>
<!-- Section - Main -->
<div id="main">
<div class="container">
<div class="main_text">
<h3>NEW ARRIVAL</h3>
<h2>SPORT BIKES AND MOTORCYCLES</h2>
</div>
</div>
</div>
<!-- Section - Navigation -->
<nav id="nav">
<div class="container">
<div id="navlist">
<div class="nav_eyewear">
<span>Eyewear</span>
</div>
<div class="nav_apparel">
<span>Apparel</span>
</div>
<div class="nav_gadgets">
<span>Gadgets</span>
</div>
<div class="nav_vehicles">
<span>Vehicles</span>
</div>
<div class="nav_classes">
<span>Classes</span>
</div>
<div class="nav_contact">
<span>Contact</span>
</div>
</div>
</div>
<div class="container">
<div id="navlistmobile">
<div class="nav_eyewear">
<span>Main</span>
</div>
</div>
</div>
</nav>
<!-- Section - Products -->
<div class="products">
<div id="products" class="container">
<div id="pen">
<img src="./resources/pen.png" alt="Pen">
<h3>Exploding Pen</h3>
</div>
<div id="watch">
<img src="./resources/watch.png" alt="watch">
<h3>Cellular Watch</h3>
</div>
<div id="glasses">
<img src="./resources/glasses.png" alt="glasses">
<h3>Thermal Glasses</h3>
</div>
</div>
</div>
<!-- Section - Location -->
<div class="location">
<div id="location" class="container">
<div id="geo">
<h3 id="locationheader">Location</h3>
<h3>-47.346436, 84.32354</h3>
</div>
<div id="hours">
<h3 id="hoursheader">Hours</h3>
<h3>0800 - 1800</h3>
</div>
</div>
</div>
<!-- Section Footer -->
<footer>
<div id="footer" class="container">
<div>
<h3>Copyright Secret Agent Supply Inc.</h3>
</div>
</div>
</footer>
</page>
</body>
</html>