forked from DABB1/Digital-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader2.html
More file actions
44 lines (35 loc) · 1.31 KB
/
header2.html
File metadata and controls
44 lines (35 loc) · 1.31 KB
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
<!DOCTYPE html>
<html>
<head>
<!--<link rel = "stylesheet" href = "style1_2.css">
<link rel="stylesheet" href="style1anjali.css">
<link rel="stylesheet" href="style2.css">-->
<link rel = "stylesheet" href = "style_final.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class = "header">
<div id="name">BookHunters</div>
<div class="topnav" id="topnav">
<a class="btnss" href="homePg.php">Home</a>
<a class="btnss" href="books.php">Books</a>
<a class="btnss" href="contact.php">Contact Us</a>
<div class="search-container">
<form action="search.php" method = "GET">
<input type="text" placeholder="Search for a book..." name="search">
<button type="submit"><img src = "srchimg.png" height = "14px" width = "14px"></button>
</form>
</div><!--close search-container-->
<div class="topnav">
<div class="dropdown">
<button class="dropbtn">More
<!--<i class="fa fa-caret-down"></i>-->
</button>
<div class="dropdown-content">
<a href="myprofile.php">My Account</a>
<a href="logout.php">Logout</a>
</div>
</div>
</div>
</div><!--close topnav-->
</div><!--close header-->