-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
113 lines (99 loc) · 4.42 KB
/
help.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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="A books trading website for students">
<meta name="viewport" content="width=device-with, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="assets/images/marcus_play_book.ico">
<link rel="stylesheet" href="assets/css/reset.css" type="text/css">
<link rel="stylesheet" href="assets/css/main.css" type="text/css">
<!--Fonts -->
<link href="https://fonts.googleapis.com/css?family=Barrio|Gloria+Hallelujah|Indie+Flower|Josefin+Sans" rel="stylesheet">
<title>Help - Books In Bound</title>
</head>
<body>
<header id="page_header">
<nav>
<ul>
<a href="register.html"><li>Signup </li></a>
<a href="login.html"><li>Login </li></a>
</ul>
</nav>
<!--Logo-->
<div id="logo">
<img src="assets/images/logo.png">
</div> <!-- End of logo div -->
<!--search box-->
<div id="browse">
<form action="search.php" method="GET">
<fieldset>
<select>
<option value="Genre" selected>Genre</option>
<option value="Programming">Programming</option>
<option value="Non-fiction">Non-fiction</option>
<option value="Science fiction">Science fiction</option>
<option value="Satire">Satire</option>
<option value="drama">Drama</option>
<option value="Action &"> Action and Adventure</option>
<option value="romance">Romance</option>
<option value="mystery">Mystery</option>
<option value="horror">Horror</option>
<option value="health">Health</option>
<option value="travel">Travel</option>
<option value="children">Children's</option>
<option value="religion, Spirituality">Religion, Spirituality & New Age
Science</option>
<option>History</option>
<option>Math</option>
<option>Anthology</option>
<option>Poetry</option>
<option>Encyclopedias</option>
<option>Comics</option>
<option>Art</option>
<option>Cookbooks</option>
<option>Journals</option>
<option>Prayer books</option>
<option>Series</option>
<option>Trilogy</option>
<option>Biographies</option>
<option>Autobiographies</option>
<option>Fantasy</option>
</select>
<input type="search" placeholder="Browse Books">
<input type="submit" value="Search">
</fieldset>
</form><!-- End of search form -->
</div> <!-- End of seacrch form div -->
</header> <!-- End of main header tag -->
<div class="main_content">
</div>
<footer>
<div id="footer">
<div id="support">
<p>Support</p>
<ul>
<a href="contact.html"><li>Contact Us</li></a>
<a href="#" style="visibility:none;"><li>faq</li></a>
<a href="help.html"><li>Help</li></a>
</ul>
</div>
<div id="quick_links">
<p>Quick Links</p>
<ul>
<a href="#browse"><li>Search</li></a>
<a href="about.html"><li>About Us</li></a>
</ul>
</div>
</div>
<div id="link_footer">
<ul>
<a href="index.html"><li>© Booksinbound.com</li></a>
<a href="privacy.html"><li>Privacy policy</li></a>
<a href="terms.html"><li>Terms and conditions</li></a>
</ul>
</div>
</footer>
<div>
</body>
</html>