-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (35 loc) · 1.5 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
<!DOCTYPE html>
<html class ="center" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Library</title>
<link rel="stylesheet" type='text/css' href='library.css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
</head>
<body>
<h1 id ="title">Book Storage</h1>
<div class="main-section">
<button id ="add-book-button">Add New Book</button>
<div id="user-buttons-container">
<form id='myForm' required>
<input type='text' class="user-button" id="book-title" placeholder="Book Title" value="" autocomplete="off">
<input type='text' class="user-button"id='author' placeholder="Author's Name" value='' autocomplete="off">
<input type='text' class="user-button"id='pages' placeholder="# of Pages" value='' autocomplete="off">
<label for="myCheck" id='alreadyRead'>Already Read:</label>
<input type="checkbox" id="checkBox">
</form>
<button id="submit-button">Submit</button>
</div>
</div>
<div id='book-title-container'>
<h1 class='books-title' id="ttl">Title</h1>
<h1 class='books-title' id="Athr">Author</h1>
<h1 class='books-title' id="Pgs">Pages</h1>
<h1 class='books-title' id='RdSt'>Read</h1>
<h1 class='books-title' id='trashCans'>Delete?</h1>
</div>
<script src="https://kit.fontawesome.com/aa842ab616.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="library.js"> </script>
</body>
</html>