-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrowse.html
More file actions
118 lines (116 loc) · 3.84 KB
/
Copy pathBrowse.html
File metadata and controls
118 lines (116 loc) · 3.84 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<head>
<title>Search Page</title>
<link href="Main.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>
<header class="bg-header py-lg-5">
<div class="container px-4 px-lg-5 mt-xl-5 mb-xl-2">
<div class="text-center text-white">
<h1 class="display-4 fw-bolder mt-5">Browse for the Best Programming Books</h1>
<p class="lead fw-normal text-white-50 mb-0">Most popular languages:</p>
</div>
</div>
</header>
<div id="Book_section1">
<div class="container px-4 px-lg-5 pt-4 mt-5">
<div class="text-center text-black">
<h3 class="display-4 fw-bolder">Python Books:</h3>
<p class="lead fw-normal text-black-50 mb-0"><a href="Python.html">See More</a></p>
</div>
</div>
<div id="grid1">
</div>
<script>
$(function(){
$("#grid1").load("Browse_grid.html");
});
</script>
</div>
</div>
<div id="Book_section2">
<div class="container px-4 px-lg-5 mt-5">
<div class="text-center text-black">
<h3 class="display-4 fw-bolder">Java Books:</h3>
<p class="lead fw-normal text-black-50 mb-0"><a href="Java.html">See More</a></p>
</div>
</div>
<div id="grid2">
</div>
<script>
$(function(){
$("#grid2").load("Browse_grid.html");
});
</script>
</div>
</div>
<div id="Book_section3">
<div class="container px-4 px-lg-5 mt-5">
<div class="text-center text-black">
<h3 class="display-4 fw-bolder">SQL Books:</h3>
<p class="lead fw-normal text-black-50 mb-0"><a href="SQL.html">See More</a></p>
</div>
</div>
<div id="grid3">
</div>
<script>
$(function(){
$("#grid3").load("Browse_grid.html");
});
</script>
</div>
</div>
<div id="Book_section4">
<div class="container px-4 px-lg-5 mt-5">
<div class="text-center text-black">
<h3 class="display-4 fw-bolder">PHP Books:</h3>
<p class="lead fw-normal text-black-50 mb-0"><a href="PHP.html">See More</a></p>
</div>
</div>
<div id="grid4">
</div>
<script>
$(function(){
$("#grid4").load("Browse_grid.html");
});
</script>
</div>
</div>
<div id="Book_section5">
<div class="container px-4 px-lg-5 mt-5">
<div class="text-center text-black">
<h3 class="display-4 fw-bolder">HTML & CSS Books:</h3>
<p class="lead fw-normal text-black-50 mb-0"><a href="HTML&CSS.html">See More</a></p>
</div>
</div>
<div id="grid5">
</div>
<script>
$(function(){
$("#grid5").load("Browse_grid.html");
});
</script>
</div>
</div>
</body>
<div id="foot">
</div>
<script>
$(function(){
$("#foot").load("Footer.html");
});
</script>
</html>