-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchBibliography.html
45 lines (40 loc) · 1.42 KB
/
searchBibliography.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Search Bibliography</title>
<link rel="stylesheet" href="mainStyling.css">
<link rel="stylesheet" href="formMainStyling.css">
</head>
<body>
<div id="general">
<!-- here the main header -->
<header>
<h1>Bibliography</h1>
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="searchBibliography.html" class='actualPosition'>Search Items</a></li>
<li><a href="userLogIn.html">Log In</a></li>
<li><a href="#">Add New Items</a></li>
</ul>
</nav>
</header>
<!-- here the place of each item of bibliography -->
<section class="">
<article class="">
<form class="" action="searchResults.php" method="post">
<fieldset>
<legend>Bibliography Items Search</legend>
<input type="text" name="author" id="left" value="" placeholder="Author">
<input type="text" name="title" id="left" value="" placeholder="Title">
<input type="text" name="publisher" id="left" value="" placeholder="publisher">
<input type="submit" name="" id="left" value="Search" >
</fieldset>
</form>
</article>
</section>
<footer>©2022 Bibliography</footer>
</div><!-- end of div general -->
</body>
</html>