-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.92 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="IMDB, but for books!!">
<meta name="author" content="Sonoth Amin">
<link rel="canonical" href="https://bookbase.web.app/home/">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha1/dist/css/bootstrap.min.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css2?family=Gentium+Book+Plus" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Home | BookBase</title>
</head>
<body class="text-center">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<a href=".">
<h4 id="headbrand" class="masthead-brand"><img src="./BBlogo.png" id="header-brand-logo">BookBase</h4>
</a>
<nav class="nav nav-masthead justify-content-center">
<a id="signin" class="nav-link" href="./auth/login.html">Login</a>
<a id="signup" class="nav-link" href="./auth/signup.html">Sign Up</a>
</nav>
</div>
</header>
<main role="main" class="inner cover">
<h1 class="cover-heading">BookBase</h1>
<p class="lead">"Not all those wander are lost"</p>
<a href="./catalogue/" id="btn-lead" class="btn btn-lg btn-secondary">Start Wandering</a>
</main>
<footer class="mastfoot mt-auto">
<div class="inner">
<p> © 2024 <a id="sonoth" href="https://sonothamin.github.io/">Sonoth Amin</a></p>
</div>
</footer>
</div>
</body>
</html>