-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<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=Quicksand:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>My Library</title>
</head>
<body>
<header>
<h1>Welcome to My Library</h1>
</header>
<main>
<section class="library">
</section>
<aside class="new-book-form">
<p>Complete the form below to add a book to your library</p>
<form id="bookForm" name="bookForm">
<fieldset class="form">
<label for="title">Title</label>
<input type="text" id="title" required>
<label for="author">Author</label>
<input type="text" id="author" required>
<label for="pages">Pages</label>
<input type="number" id="pages" required>
<label for="read">Read:</label>
<input type="checkbox" id="read">
<input type="submit" id="submit">
</fieldset>
</form>
</aside>
</main>
<script src="script.js"></script>
</body>
</html>