-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
38 lines (32 loc) · 1.31 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Todays Special</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/Footer-Basic.css">
<link rel="stylesheet" href="assets/css/Highlight-Blue.css">
<link rel="stylesheet" href="assets/css/Navigation-Clean.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<nav class="navbar navbar-light navbar-expand-lg bg-dark navigation-clean">
<div class="container"><a class="navbar-brand fs-1 link-light" style="color:white">Menu</a><img src="assets/img/icon.jpg" width="70px" height="70px" alt="Logo"></div>
</nav>
<?php include('indexView.php'); ?>
<!-- footer -->
<footer class="footer-basic">
<div class="container">
<div class="row">
<div class="col-sm-6">
<p class="text-center">
Copyright © <script>document.write(new Date().getFullYear());</script> All rights reserved
</p>
</div>
</div>
</div>
</footer>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>