-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (56 loc) · 2.12 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">
<title>DigiTales | E-books</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins">
<style type="text/css">
body {
background-image: url("img/e-book.png");
background-position: top;
background-repeat: no-repeat;
background-size: cover;
position: relative;
min-height: 100vh;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-sm">
<a href="" class="navbar-brand">
<img src="img/logo.resized.png" alt="logo"/>
DigiTales
</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#mainNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="mainNavbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link">HOME</a>
</li>
<li class="nav-item">
<a href="books.html" class="nav-link">BOOKS</a>
</li>
<li class="nav-item">
<a href="#about-us" class="nav-link">ABOUT US</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid" id="body-container" style="margin-bottom: 3.5rem;">
<div class="container-fluid text-center">
<h5 id="home-display-text1" class="bannerText">Your Portal To Endless</h5>
<h5 id="home-display-text2" class="bannerText">e-tales of Wonder</h5>
<a href="books.html" class="btn btn-light btn-lg rounded-pill" id="start-reading-button">START READING</a>
</div>
</div>
<div id="footer" style="position: absolute;">
<h5 id="footer-text">All Rights Reserved.</h5>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>