-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (49 loc) · 2.51 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title> Library Project</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="./script.js" defer></script>
</head>
<body>
<div class="form-container">
<h1>BookShelf</h1>
<div class="form-wrapper">
<form class="form">
<div>
<label class="main-label" for="title">Title</label>
<input class="main-input" type="text" required id = 'title' name="title" placeholder="Enter Book Title" data-input>
</div>
<div>
<label class="main-label" for="author">Author</label>
<input class="main-input" type="text" required id = 'author' name="author" placeholder="Enter Book Author" data-input>
</div>
<div>
<label class="main-label"for="pages">Pages</label>
<input class="main-input" type="text" required id = 'pages' name="pages" placeholder="Enter Number Of Pages" data-input>
</div>
<p class="sub-text">Have you read this book?</p>
<div class="checkbox-wrapper">
<input type="radio" required id="yesBox" name="read-status" class="read-status main-checkbox" value="yes">
<label class="sub-label" for="yesBox">Yes</label>
</div>
<div class="checkbox-wrapper">
<input type="radio" required id="noBox" name="read-status" class="read-status main-checkbox" value="no">
<label class="sub-label" for="noBox">No</label>
</div>
<div class="btn-wrapper">
<button class="btn" type="submit" id="submit" value="submit">Submit</button>
</div>
</form>
</div>
<div class="table-wrapper"></div>
</div>
</body>
</html>