-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathfeatures.html
130 lines (121 loc) · 4.76 KB
/
features.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features | Book Finder</title>
<link rel="shortcut icon" href="./img/book.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/features.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body class="bg">
<script>
const localTheme = localStorage?.getItem("theme");
if (localTheme === "dark") {
document.body.classList.add("dark-theme");
} else {
document.body.classList.remove("dark-theme");
}
</script>
<nav id="nav">
<div class="container-fluid align-items-center">
<img id="logo" src="./img/book.png" alt="logo">
<a class="navbar-brand" href="index.html">
<span class="text">Book</span><span class="find">Finder</span>
</a>
<div class="mode d-flex align-items-center">
<ul class="nav-menu">
<li class="nav-item">
<a class="nav-link" href="index.html"> <span class="find">Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html"> <span class="find">About</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="features.html"> <span class="find">Features</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contributors.html"> <span class="find">Contributors</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html"> <span class="find">Contact</span></a>
</li>
</ul>
<img class="dark-mode" id="icon" src="img/moon.png" alt="Toggle Dark Mode" />
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</div>
</nav>
<section class="features">
<header class="header" id="header">
<h1 class="title">
Features
</h1>
</header>
<div class="container" data-aos="fade-up">
<img class="container-img" style="width:330px" src="img/e-book-app-6921052-5662039.png" alt="">
<div class="description">
<h3>Search in seconds</h3>
<p>With many e-books, you have ability to search through an entire book in seconds.</p>
</div>
</div>
<div class="container" data-aos="fade-up">
<img class="container-img" style="width:230px"
src="img/woman-reading-book-while-drinking-coffee-5632630-4696294.png" alt="">
<div class="description">
<h3>Read anytime, anywhere</h3>
<p>If you enjoy reading on the go, you can take your whole library with you.</p>
</div>
</div>
<div class="container" data-aos="fade-up">
<img class="container-img" style="width:230px"
src="img/man-holding-books-in-her-hands-and-listening-and-reading-them-online-5186298-4332949.png" alt="">
<div class="description">
<h3>Audio books</h3>
<p>Book Finder helps you to not only get your fav e-books but also makes them available in audio forms.</p>
</div>
</div>
</section>
<div class="search" id="search-bar">
<form class="search-form">
</form>
</div>
<a href="#" id="return-to-top" class="scroll-container">
<i class="fa fa-arrow-up"></i>
</a>
<footer class="foot">
<div>
Made with ❤️ by <a href="https://github.com/wasimreja">Wasim Reja</a>
</div>
<div class="icons">
<a class="twitter" href="https://twitter.com/_wasimreja" target="_blank">
<i class="fa fa-twitter"></i>
</a>
<a class="linkedin" href="https://www.linkedin.com/in/wasimreja" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
<a class="instagram" href="https://www.instagram.com/_wasimreja" target="_blank">
<i class="fa fa-instagram"></i>
</a>
</div>
</footer>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
offset: 200,
duration: 1000
});
</script>
<script src="./js/main.js"></script>
</body>
</html>