-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (38 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Food Design</title>
<link rel="stylesheet" href="Style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"/>
</head>
<body>
<header>
<div class="container">
<div class="pre-nav">
<a href="#"class="logo">
<i class="fas fa-utensils"></i>
Restaurant
</a>
<a href="#">Call us on 08 200 4000</a>
</div>
<nav>
<ul>
<li ><a href="#" class="active">Home</a></li>
<li ><a href="#">About Us</a></li>
<li ><a href="#">Menu</a></li>
<li ><a href="#">Contact Us</a></li>
<li ><a href="#" class="highlight">Book a Table</a></li>
</ul>
</nav>
<div class="content">
<h1>Try something new</h1>
<a href="#" class="white-link">
Book a Table </a>
<a href="#" class="teal-link">View our Menu</a>
</div>
</div>
</header>
</body>
</html>