-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPHP.html
47 lines (47 loc) · 1.6 KB
/
PHP.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
<!DOCTYPE html>
<head>
<title>PHP 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">PHP Books</h1>
<p class="lead fw-normal text-white-50 mb-0"><a href="Browse.html">Back to all Books</a></p>
</div>
</div>
</header>
<div id="Book_section1">
</div>
<div id="grid4">
</div>
<script>
$(function(){
$("#grid4").load("Browse_grid.html");
});
</script>
</div>
</div>
</body>
<div id="foot">
</div>
<script>
$(function(){
$("#foot").load("Footer.html");
});
</script>
</html>