-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (48 loc) · 1.75 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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<title>Awesome Books ES6</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- *********************** PAGE OVERALL CONTENT WRAPPER *********************** -->
<div class="container">
<!-- *********************** PAGE HEADER *********************** -->
<header class="header">
<div class="header__wrapper">
<span class="header__logo">Awesome Books</span>
<nav class="header__nav">
<ul class="header__nav-list">
<li class="header__nav-item active">List</li>
<li class="header__nav-item" data-nav="add">Add new</li>
<li class="header__nav-item" data-nav="contact">Contact</li>
</ul>
</nav>
</div>
<span class="header__date"></span>
</header>
<!-- *********************** PAGE MAIN *********************** -->
<main class="main">
<div class="books">
<!--Book collection body-->
<section class="books__collection">
<!--Books collection title-->
<h1 class="books__collection-title">All awesome books</h1>
<!--Books list section-->
<div class="books__list"></div>
</section>
</div>
</main>
<!-- *********************** PAGE FOOTER *********************** -->
<footer class="footer">
<p class="footer__note">Copyright</p>
</footer>
</div>
<!-- *********************** PAGE SCRIPTS *********************** -->
<script type="module" src="js/index.js"></script>
</body>
</html>