-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooks.html
70 lines (66 loc) · 2.54 KB
/
books.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
<!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/books-bg.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="index.html" 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" 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 row mx-sm-auto" style="margin-bottom: 40px;">
<div class="col-sm-4 text-center">
<div class="d-flex border border-light border-3" id="poster1"></div>
<a href="ebooks/How The Leopard got his Spots.pdf" target="_blank" class="btn btn-danger btn-lg">READ</a>
<a href="quiz.html" class="btn btn-danger btn-lg">QUIZ</a>
</div>
<div class="col-sm-4 text-center">
<div class="d-flex border border-light border-3" id="poster2"></div>
<a href="" class="btn btn-danger btn-lg">READ</a>
<a href="" class="btn btn-danger btn-lg">QUIZ</a>
</div>
<div class="col-sm-4 text-center">
<div class="d-flex border border-light border-3" id="poster3"></div>
<a href="" class="btn btn-danger btn-lg">READ</a>
<a href="" class="btn btn-danger btn-lg">QUIZ</a>
</div>
</div>
<div id="footer" style="position: relative;">
<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>