-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.html
More file actions
96 lines (94 loc) · 3.4 KB
/
Home.html
File metadata and controls
96 lines (94 loc) · 3.4 KB
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
<!DOCTYPE html>
<head>
<title>Home Page</title>
<link href="Main.css" type="text/css" rel="stylesheet" />
<link href="styles.css" type="text/css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</head>
<html>
<body>
<div class="content">
<div id="nav">
</div>
<script>
$(function(){
$("#nav").load("Nav.html");
});
</script>
<div>
<h1 class="display-4 fw-bolder mt-5 pt-5 text-center">
All the books for you, in one place
</h1>
</div>
<div class="hero_area">
<div>
<img src="Img/library-100616524-large.jpg" class="hero" alt="">
<a href="Browse.html" class="button btn btn-primary btn-lg active position-absolute hero-button" role="button" aria-pressed="true" id="Browse_button">Browse Now</a>
</div>
</div>
<div>
<h1 class="text-center mt-5 mb-0">
Trending Books:
</h1>
</div>
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<div class="carousel-inner">
<div class="carousel-item active">
<div id="grid6">
</div>
<script>
$(function(){
$("#grid6").load("Browse_grid.html");
});
</script>
</div>
<div class="carousel-item">
<div id="grid7">
</div>
<script>
$(function(){
$("#grid7").load("Browse_grid.html");
});
</script>
</div>
<div class="carousel-item">
<div id="grid8">
</div>
<script>
$(function(){
$("#grid8").load("Browse_grid.html");
});
</script>
</div>
</div>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
<div>
<h1 class="text-center mt-5 mb-5">
You Make This Possible
</h1>
<h5 class="text-center mt-3 mb-5">
All purchases contribute to supporting literacy and education around the world
</h5>
<div class="container pb-5 mb-5">
<div class="col-sm-12"><img src="Img/girls_raise_their_hands_in_response_to_the_question.jpg" alt="Girls Raise their hands" class="img-fluid mx-auto d-block"></div>
</div>
</div>
</div>
</body>
<div id="foot">
</div>
<script>
$(function(){
$("#foot").load("Footer.html");
});
</script>
</html>