-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMasterTemplate.php
More file actions
48 lines (46 loc) · 1.59 KB
/
MasterTemplate.php
File metadata and controls
48 lines (46 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Giftany & Co.</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/site.css">
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<!-- 1st row -->
<div class="row no-gutters">
<div class="col-sm-12">
<a href="index.php">
<img src="Images/original1.png" alt="Logo" class="img-fluid" style="width: 100%"/></a>
</div>
</div>
<!-- 2nd row -->
<div class="row no-gutters">
<div class="col-sm-12">
<?php include("navbar.php"); ?>
</div>
</div>
<!-- 3rd row -->
<div class="row no-gutters">
<div class="col-sm-12">
<?php echo $MainContent; ?>
</div>
</div>
<!-- 4th row -->
<div class="row no-gutters">
<div class="col-sm-12" style="text-align: center;">
<hr>
Do you need help? Please email to:
<a href="mailto:giftany@np.edu.sg">giftany@np.edu.sg</a>
<p style="font-size:12px">©Copyright by Giftany & Co.</p>
</div>
</div>
</div>
</body>
</html>