-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFindUs.html
119 lines (98 loc) · 3.89 KB
/
FindUs.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<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">
<title>Find Us | The Master Chef's</title>
<link rel="stylesheet" href="Food-Css/style.css">
<link rel="stylesheet" href="Food-Css/find.css">
<link rel="stylesheet" href="Food-Css/phone.css">
</head>
<body>
<header>
<div id="logo">
<img src="Food-images/logo.png" alt="logo-img">
</div>
<h1 class="primary">
Served With Happiness
</h1>
</header>
<nav id="navbar">
<div id="nav1">
<ul>
<li class="item"><a href="Homepage.html">Master Chef's</a></li>
<li class="item"><a href="Story.html">Our Story</a></li>
<li class="item"><a href="Menu.html">Menu</a></li>
<li class="item"><a href="FindUs.html">Find Us</a></li>
</ul>
</div>
<!-- nav2 for phone.css -->
<div id="nav2">
<ul>
<li>
<a href="#">Master Chef's</a>
<ul class="dropdown">
<li class="item"><a href="Homepage.html">Home</a></li>
<li class="item"><a href="Story.html">Our Story</a></li>
<li class="item"><a href="Menu.html">Menu</a></li>
<li class="item"><a href="FindUs.html">Find Us</a></li>
</ul>
</li>
</ul>
</div>
<div class="btnBox">
<button id="button"><a href="OrderNow.html"><strong>Order Now</strong></a></button>
</div>
</nav>
<section class="map">
<div class="mapinfo">
<ul>
<li>Monday to Saturday</li>
<li>7 am to 11pm</li>
<li>DownTown Street, Calistoga, North California</li>
<li>Free Delivery in all Calistoga</li>
<li>0398&342103</li>
<li>MasterChef'[email protected]</li>
</ul>
</div>
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d6424.398825437265!2d74.27634283561801!3d31.397908613859244!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2s!4v1680195882133!5m2!1sen!2s"
width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
<section id="contact">
<form action="">
<div class="form-group">
<input type="text" name="name" placeholder="Name">
</div>
<div class="form-group">
<input type="email" name="name" placeholder="Email">
</div>
<div class="form-group">
<input type="phone" name="name" placeholder="Phone Number">
</div>
<div class="form-group">
<textarea name="comment" cols="30" rows="10" placeholder="Leave a comment..."></textarea>
</div>
</form>
</section>
<footer>
<div class="foot">
<div class="last">© All rights reserved</div>
<div class="tags">
<a href=""><img src="Food-images/fb.jpg" alt=""></a>
<a href=""><img src="Food-images/insta.jpg" alt=""></a>
<a href=""><img src="Food-images/twitter.png" alt=""></a>
<a href=""><img src="Food-images/whatsapp.png" alt=""></a>
<a href=""><img src="Food-images/pintrest.png" alt=""></a>
</div>
</div>
<hr>
<div class="logocontainer">
<img class="lastlogo" src="Food-images/logo.png" alt="">
<h1 class="primary">The Master Chef's</h1>
</div>
</footer>
</body>
</html>