-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (48 loc) · 1.86 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
<!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 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@100;300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<title>Tra-Boo</title>
</head>
<body>
<main>
<header>
<h1 class="title">Tra-Boo</h1>
<h2 class="slogan">Your own book tracker on the web</h2>
</header>
<section class="form">
<label class='label__title' for="title">Title</label>
<input class='label__title-input' type="text" name='title'>
<label class='label__author' for="autor">Author</label>
<input class='label__author-input' type="text" name='autor'>
<div class="book-status">
<p class="status-title">Read?</p>
<label for="switch">
<input type="checkbox" class="switch-btn" checked>
</label>
</div>
<button class="form__btn">+ Add Book</button>
</section>
<hr>
<section class="books-container">
<div class="books__header">
<div class="book__header-title">Title</div>
<div class="book__header-author">Author</div>
<div class="book__header-status">Status</div>
<div class="book__header-x">Delete</div>
</div>
<div class="books-added">
</div>
</div>
</section>
</main>
<script src="js/app.js"></script>
</body>
</html>