-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.php
39 lines (32 loc) · 1.13 KB
/
template.php
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
<!DOCTYPE html>
<html lang="en">
<?php include 'includes/db_conntect.php'; ?>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="images/logo.png">
<title>Review</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/nav.css">
<link rel="stylesheet" href="style/menu.css">
<link rel="stylesheet" href="style/footer.css">
<link rel="stylesheet" href="style/review.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<div class="container">
<?php include 'includes/menu.php'; ?>
<div class="content">
<?php include 'includes/nav.php'; ?>
<section>
<div class="box">
<!-- Write all the content here -->
</div>
</section>
</div>
<?php include 'includes/footer.php'; ?>
</div>
<script src="js/script.js"></script>
</body>
</html>