-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathabout.html
118 lines (109 loc) · 4.19 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Us | 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/about.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous" />
</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="about">
<header class="header" id="header">
<h1 class="title">
About
<p class="finder">Us</p>
</h1>
</header>
<div class="container">
<div class="row align-items-end p-3">
<div class="col-lg-7">
<div class="py-3">
<div class="description">
Book Finder is your go-to place for all kinds of book related searches, need to read a book but don't know
where to find it?<br /><br />
We got your back! Started in 2022, we are an open-source free search engine with over a million books and
more to find out. Here you won't just be able to read books but also listen to them.<br /><br />
So what are you waiting for? Search your favourite book right now!
</div>
</div>
</div>
<div class="col-lg-5">
<img src="img/book-reading.png" alt="Reading Book Illustration" class="illustration" />
</div>
</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="./js/main.js"></script>
</body>
</html>