forked from Technigo/project-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (53 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Digital Library</title>
</head>
<body>
<header>
<div class="hero.text">
<h1>Welcome to Our Library</h1>
<h5>Explore - Learn - Grow</h5>
</div>
<div class="sortButtons">
<!-- <p>alphabetical sorting</p> -->
<div id="az-za">
<button id="az">A-Z</button>
<button id="za">Z-A</button>
</div>
<!-- <p>Sort Genre</p> -->
<select id="genreDropdown">
<option value="all">All genres</option>
<option value="Fantasy">Fantasy</option>
<option value="Fiction">Fiction</option>
<option value="Mystery">Mystery</option>
<option value="Horror">Horror</option>
<option value="Science Fiction">Science fiction</option>
<option value="Adventure">Adventure</option>
<option value="Dystopian">Dystopian</option>
</select>
<!-- <p>Most readed</p> -->
<div>
<button id="btnRate">Rate</button>
</div>
<div>
<button id="btnRandom">Random</button>
</div>
</div>
</header>
<main class="main">
<div id="container">
<!-- here is where our books go -->
</div>
</main>
<footer>
<p> 2024 Arnau Vidal, Lorenzo Dastoli</p>
<img src="books-images/logo.svg" alt="Technigo" class="logo">
</footer>
<script src="script.js"></script>
</body>
</html>