-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (67 loc) · 2.75 KB
/
index.html
File metadata and controls
70 lines (67 loc) · 2.75 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
<!DOCTYPE html>
<head lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="page-wrapper">
<header class="container">
<div class="row">
<div class="column flex-shrink">
<div class="logo">
<span>Codeup</span> Books App
</div>
</div>
</div>
</header>
<section class="container cat-tags">
<div class="row">
<div class="column">
<ul class="cat-tab-menu">
<li class="active">
<div>All</div>
<span>32</span>
</li>
<li>
<div>Fiction</div>
<span>8</span>
</li>
<li>
<div>Novels</div>
<span>12</span>
</li>
</ul>
</div>
<div class="column flex-shrink justify-content-center">
<button class="btn btn-cta" id="add-book">Add Book</button>
</div>
</div>
</section>
<section class="container">
<div class="row">
<div class="books-grid">
<!-- <article class="book-card">
<div class="book-card-title">The Great Gatsby</div>
<p class="book-card-year">1925</p>
<p class="book-card-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc
sed quam ut nulla rhoncus consectetur non ut ante. Morbi
quam diam, fringilla vitae maximus eu.</p>
<div class="d-flex align-items-center justify-content-between">
<span class="book-card-span">Rating</span>
<span class="book-card-rating">4/10</span>
</div>
<meter class="book-card-meter" min="0" max="10" value="4"></meter>
<div class="d-flex align-items-center justify-content-start gap-10 flex-wrap">
<div class="book-card-tag">Novel</div>
<div class="book-card-tag">Fiction</div>
</div>
</article> -->
</div>
</div>
</section>
</div>
<!-- MAIN -->
<script type="module" src="js/index.js"></script>
</body>