forked from tinkerhub/stackup-teamplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.html
55 lines (55 loc) · 1.75 KB
/
header.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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>SPOTLIGHT</title>
<!-- favicon -->
<link rel="icon" href="./img/favicon.ico" type="image/gif" sizes="16x16" />
<!-- EXTERNAL LINKS -->
<link rel="stylesheet" href="css/header.css" />
<script src="https://kit.fontawesome.com/4a3b1f73a2.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Lato&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<section>
<!-- MAIN CONTAINER -->
<div id="container">
<!-- SHOP NAME -->
<div id="shopName">
<a href="index.html"> <b>SPOT</b>LIGHT </a>
</div>
<!-- COLLCETIONS ON WEBSITE -->
<div id="collection">
<div id="clothing"><a href="index.html"> CLOTHING </a></div>
<div id="accessories"><a href="index.html"> ACCESSORIES </a></div>
</div>
<!-- SEARCH SECTION -->
<div id="search">
<i class="fas fa-search search"></i>
<input
type="text"
id="input"
name="searchBox"
placeholder="Search for Clothing and Accessories"
/>
</div>
<!-- USER SECTION (CART AND USER ICON) -->
<div id="user">
<a href="cart.html">
<i class="fas fa-shopping-cart addedToCart"
><div id="badge">0</div></i
></a
>
<a href="#"> <i class="fas fa-user-circle userIcon"></i> </a>
</div>
</div>
</section>
</header>
</body>
</html>