-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (58 loc) · 2.61 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/app.css">
<title>Food</title>
</head>
<body>
<header>
<div class="wrap">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 menu-shell">
<a href="/" title="food" id="logo">
<img src="assets/img/logo/logo.png" alt="Food Logo">
</a>
<nav>
<ul>
<li><a href="/" title="Welcome">Welcome</a></li>
<li><a href="/" title="Menu">Menu</a></li>
<li><a href="/" title="Video tour">Video tour</a></li>
<li><a href="/" title="Contact">Contact</a></li>
</ul>
<ul class="social-icons">
<li>
<a href="https://www.facebook.com" title="FB Icon">
<i class="fab fa-facebook-square"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com" title="IG Icon">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com" title="TW Icon">
<i class="fa fa-twitter-square" aria-hidden="true"></i>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<section id="content">
<div id="main-carousel" class="tx_c">
<h1>It's a Food Adventure.</h1>
<p>You'll Never Put A Better Bit Of Food On Your Knife</p>
<a href="" class="btn_link dark_bg light_tx">Our Menu</a>
</div>
</section>
<script type="text/javascript" src="assets/js/jquery-3.4.1.js"></script>
<script type="text/javascript" src="assets/js/app.js"></script>
</body>
</html>