This repository has been archived by the owner on Aug 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
cart.html
88 lines (64 loc) · 2.29 KB
/
cart.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>Game of Thrones | ThinkGeek</title>
<link rel="icon" href="res/ThinkGeek-pt.png" sizes="16x16">
<link rel="stylesheet" type="text/css" href="css/sidebar.css">
<link rel="stylesheet" type="text/css" href="css/navbar.css">
<link rel="stylesheet" type="text/css" href="css/content.css">
<!--BOOTSTRAP-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"/>
<style type="text/css">
body{
margin: 0;
}
#logo{
padding-top: 0.7%;
background-color: #333;
width: 14%;
height: 10.5%;
float: left;
position: fixed;
}
</style>
</head>
<body>
<div id="logo">
<a href="fandom.php">
<img src="res/thinkgeek-png.png" width="100%">
</a>
</div>
<div id="sidebar">
<ul>
<li>Welcome</li>
<li><a class="active" href="#trending">
<table><tr><td><img src="res/icons/trending.png" /></td>
<td> Trending Products</td></tr></table></a></li>
<li><a href="#clothing"><table><tr><td><img src="res/icons/clothing.png" /></td>
<td> Clothing</td></tr></table></a></li>
<li><a href="#acc"><table><tr><td><img src="res/icons/accessories.png" /></td>
<td> Accessories</td></tr></table></a></li>
<li><a href="#sou"><table><tr><td><img src="res/icons/souvenir.png" /></td>
<td> Souvenir</td></tr></table></a></li>
<li> </li>
<li><table><tr><td><img src="res/icons/cart.png" /></td>
<td> View Cart </td><td><img src="res/icons/new_page.png" /></td></tr></table></li>
<li> </li>
<li><table><tr><td><img src="res/icons/chat.png" /></td>
<td> Chat Box </td><td><img src="res/icons/new_page.png" /></td></tr></table></li>
<li><a href="https://goo.gl/forms/jhAHet2TLLPIOQff1" target="_blank"><table><tr><td><img src="res/icons/request.png" /></td>
<td> Request Here </td><td><img src="res/icons/new_page.png" /></td></tr></table></a></li>
</ul>
</div>
<div id="navbar">
<ul>
<li><a class="active" href="got.php">Game of Thrones</a></li>
<li><a href="hp.php">Harry Potter</a></li>
<li><a href="hg.php">Hunger Games</a></li>
</ul>
</div>
<!-- BACK TO TOP-->
<a href="#" class="back-to-top">Back To Top </a>
</footer>
</body>
</html>