-
Notifications
You must be signed in to change notification settings - Fork 0
/
Header.html
74 lines (73 loc) · 4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="HeaderCSS.css">
<link rel="stylesheet" href="ProductCSS.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Guitar World</title>
</head>
<body background="https://cdn.wallpapersafari.com/40/29/yUNO4z.jpg">
<a href="https://github.com/leuterkil/GuitarShop" target="_blank"><i class="fa fa-github"style="font-size:36px;float:right;color:black;margin-right:1%;" ></i></a>
<a href="cart.php"><i class="fa fa-shopping-cart"style="font-size:36px;float:right;color:black;margin-right:1%;" ></i></a>
<a href="Index.html"><i class="fa fa-sign-out"style="font-size:36px;float:right;color:black;margin-right:1%;" ></i></a>
<div class="Logo">
<b>Guitar World</b>
<img src="https://cdn2.iconfinder.com/data/icons/thesquid-ink-40-free-flat-icon-pack/64/gibson-les_paul_guitar_bass-512.png" alt="TitleIcon" width="64" height="64"><br>
</div>
<div class="navbar">
<a href="MainMenu.php">Home</a>
<div class="dropdown">
<button class="dropbtn">Guitars
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="Products.php?type=Guitars&subtype=Electric&search=&startrow=0">Electric</a>
<a href="Products.php?type=Guitars&subtype=Bass&search=&startrow=0">Bass Guitars</a>
<a href="Products.php?type=Guitars&subtype=7-string&search=&startrow=0">7-string</a>
<a href="Products.php?type=Guitars&subtype=8-string&search=&startrow=0">8-string</a>
<a href="Products.php?type=Guitars&subtype=12-string&search=&startrow=0">12-string</a>
<a href="Products.php?type=Guitars&subtype=Baritone&search=&startrow=0">Baritone</a>
<a href="Products.php?type=Guitars&subtype=Classical&search=&startrow=0">Classical</a>
<a href="Products.php?type=Guitars&subtype=Acoustic&search=&startrow=0">Acoustic</a>
<a href="Products.php?type=Guitars&subtype=Ukaleles&search=&startrow=0">Ukaleles</a>
<a href="Products.php?type=Guitars&subtype=&search=&startrow=0">All Guitars</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Drums
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="Products.php?type=Drums&subtype=Electric&search=&startrow=0">Electric</a>
<a href="Products.php?type=Drums&subtype=Acoustic&search=&startrow=0">Acoustic</a>
<a href="Products.php?type=Drums&subtype=Cymbals&search=&startrow=0">Cymbals</a>
<a href="Products.php?type=Drums&subtype=Hardware&search=&startrow=0">Drum Hardware</a>
<a href="Products.php?type=Drums&subtype=Sticks&search=&startrow=0">Sticks</a>
<a href="Products.php?type=Drums&subtype=&search=&startrow=0">All Drums</a>
</div>
</div>
<a href="Products.php?type=Microphones&subtype=&search=&startrow=0">Microphones</a>
<div class="dropdown">
<button class="dropbtn">DJ
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="Products.php?type=DJ&subtype=Set&search=&startrow=0">DJ Set</a>
<a href="Products.php?type=DJ&subtype=Controllers&search=&startrow=0">DJ Controllers</a>
<a href="Products.php?type=DJ&subtype=Headphones&search=&startrow=0">DJ Headphones</a>
<a href="Products.php?type=DJ&subtype=Turntables&search=&startrow=0">Turntables</a>
<a href="Products.php?type=DJ&subtype=CDPlayers&search=&startrow=0">CD players</a>
<a href="Products.php?type=DJ&subtype=Mixers&search=&startrow=0">Mixers</a>
<a href="Products.php?type=DJ&subtype=&search=&startrow=0">All DJ</a>
</div>
</div>
<a href="Favorites.php">Favorites <i class="fa fa-heart"></i></a>
<div class="search-container">
<form action="Products.php" method="get">
<input type="hidden" name="startrow" value="0">
<input type="text" placeholder="Search.." name="search">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
</div>