forked from Arasko87/group-project-bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 2.06 KB
/
index.html
File metadata and controls
84 lines (77 loc) · 2.06 KB
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
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Bookshelf</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="container">
<header class="header">
<h1 class="header__title">Bookshelf</h1>
<button id="loadButton" class="button header__loader">Load</button>
</header>
<section class="counts">
<div>
<h2 class="counts__label">Unread Books Count</h2>
<div id="unreadCount" class="counts__amount">0</div>
</div>
<div>
<h2 class="counts__label">Read Books Count</h2>
<div id="readCount" class="counts__amount">0</div>
</div>
</section>
<section>
<h2 class="account__email">
Account Email: <span id="accountEmail"></span>
</h2>
</section>
<section class="books__unread">
<table>
<caption>
Unread Books
</caption>
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Publish Date</th>
</tr>
</thead>
<tbody id="unreadBooksList">
<tr>
<td>Turklerin Tarihi</td>
<td>J. D. Salinger</td>
<td>1951-07-16</td>
</tr>
</tbody>
</table>
</section>
<section class="books__read">
<table>
<caption>
Read Books
</caption>
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Publish Date</th>
</tr>
</thead>
<tbody id="readBooksList">
<!--
<tr>
<td>To Kill a Mockingbird</td>
<td>Harper Lee</td>
<td>1960-07-11</td>
</tr>
-->
</tbody>
</table>
</section>
</main>
<script src="app.js"></script>
</body>
</html>