-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.html
70 lines (59 loc) · 2.86 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Book Store Header File</title>
<link href="css/global.css" rel="stylesheet" type="text/css" />
<link href="css/template.css" rel="stylesheet" type="text/css" />
<!-- Font Awesome CDN-->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<script src="js/menu_tree.js" type="text/javascript"></script>
</head>
<body>
<!--Top part-->
<div class="header_top">
<div class="header_top_left">Welcome to Online Book Delivery [<a href="login.html" target="_parent">Login</a> | <a href="register.html" target="_parent">Register</a>]</div>
<div class="header_top_right">
<ul>
<li><a href="help.html" target="_parent">Help</a></li>
<li>|</li>
<li><i class="fas fa-shopping-cart"></i></li>
<li><a href="shopping.html" target="_parent">Cart</a></li>
<li>|</li>
<li onmouseover="myddang_show('dd_menu_top_down')" onmouseout="myddang_hidden('dd_menu_top_down')"><a href="#" target="_self">Your Account</a> <img src="images/dd_arrow_down.gif" alt="arrow" />
<div id="dd_menu_top_down">
<a href="order.html" target="_parent">Your Orders</a><br />
<a href="wishlist.html" target="_parent">Your Wish List</a><br />
<a href="credit.html" target="_parent">Your Credit</a><br />
</div>
</li>
<li>|</li>
<li><a href="donate.html" target="_parent">Donate Books/PDF</a></li>
</ul>
</div>
</div>
<!--Head part-->
<div class="header_middle">
<div class="logo"><img src="images/LOGO.jpg" alt="logo" style="height: 50px; width: 150px;"></div>
<ul id="header_serach_mid_menu">
<li><button type="submit"><i class="fas fa-search"></i></button></li>
<li><input id="header_serach" type="text" placeholder="Search Books.." class="header_input_search" /></li>
</ul>
<div class="menu">
<div id="menu_books">
<a href="#entrance_exam" target="_self" class="menu_mid_white">ENTRANCE EXAM</a>||
<a href="#ncert" target="_self" class="menu_mid_white">NCERT</a>||
<a href="#sci_fi" target="_self" class="menu_mid_white">SCI-FI</a>||
<a href="#history" target="_self" class="menu_mid_white">HISTORY</a>||
<a href="#self_help" target="_self" class="menu_mid_white">SELF-HELP</a>||
<a href="#classic" target="_self" class="menu_mid_white">CLASSIC</a>||
<a href="#bio_autobio" target="_self" class="menu_mid_white">BIOGRAPHY/AUTOBIOGRAPHY</a>||
<a href="#romance" target="_self" class="menu_mid_white">ROMANCE</a>||
<a href="#mystery" target="_self" class="menu_mid_white">MYSTERY</a>||
<a href="#horror" target="_self" class="menu_mid_white">HORROR</a>||
<a href="#thriller" target="_self" class="menu_mid_white">THRILLER</a>
</div>
</div>
</div>
</body>
</html>