-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (72 loc) · 2.41 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="main.css" rel="stylesheet" />
<link href="navbar.css" rel="stylesheet" />
<title>LibraBot</title>
</head>
<body>
<header>
<div class="maintext">
<h1>LibraBot</h1>
</div>
<nav id="navbar">
<ul class="navmenu">
<li><a style="color:gray" href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</nav>
</header>
<section class="mainbody">
<div class="searchbar">
<input id="searchbox" type="text" placeholder="Book title">
<input id="searchbutton" type="submit" value="Search">
</div>
<section class="infosectionmain">
<div id="infosection1">
<h1>Book information</h1>
<div class="infosection11">
Name: How to do a hackathon poorly but proudly</br>
ID: 3</br>
Author: Liam Brown</br>
Status: Not taken</br>
Location: C</br>
</div>
</div>
<div id="infosection2">
<h1>Book information</h1>
<div class="infosection21">
Name: Programming Languages and Computer Networks, 2nd Edition</br>
ID: 2</br>
Author: Cat Luong</br>
Status: Not taken</br>
Location: B</br>
</div>
</div>
<div id="infosection3">
<h1>Book information</h1>
<div class="infosection31">
Name: Vietnamese Vocabulary</br>
ID: 1</br>
Author: Chau Nguyen</br>
Status: Not taken</br>
Location: A</br>
</div>
</div>
</section>
<div class="gobutton">
<input type="submit" value="Let's find it!" id="findit">
<input type="submit" value="Return it!" id="returnbook">
</div>
</section>
<footer>
<h1>LibraBot</h1>
<div>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>