-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (126 loc) · 4.48 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
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
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Lemonada&display=swap" rel="stylesheet">
<title>FOODAR LIFE!</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id="ad-banner">
<img src ='./banners/banner.png' id="img-banner" width="100%" height="90" alt="Banner">
</div>
<header class="page-header">
<div class="logo">
<img src="./img/Logo.PNG">
</div>
<nav class="nav">
<ul>
<a href="#"><li>Home</li></a>
<a href="./register.html"><li>Sign-In|Register</li></a>
<a href="./about.html"><li>About</li></a>
<a href="./request.html"><li>Request</li></a>
</ul>
</nav>
</header>
<div class="clear"></div>
<div class="main-container">
<section class="feature-image">
<img src="./img/My Post.png" alt="">
</section>
<section class="feature-restaurants">
<div>
<h3>Featured Restaurants</h3>
</div>
<hr>
<div class="card" id="rest1">
<img src="./img/rest1.png" alt="Restaurants">
<h5>Bella's Inn</h5>
<p>At the Sit-in-Inn all four elements were happenning in equal measure</p>
<p>the wine, the service, and the overall ambience.</p>
<div class="coupon1" id="modal1">
<div class="modal-content">
<p>Get 15% of your first Meal</p>
</div>
</div>
</div>
<div class="card" id="rest2">
<img src="./img/rest2.png" alt="Restaurants">
<h5>Diner's lounge</h5>
<p>At the Sit-in-Inn all four elements were happenning in equal measure</p>
<p>the wine, the service, and the overall ambience.</p>
<div class="coupon2" id="modal2">
<div class="modal-content2">
<p>Get 15% of your first Meal</p>
</div>
</div>
</div>
<div class="card" id="rest3">
<img src="./img/rest3.png" alt="Restaurants">
<h5>Sailor's Lounge</h5>
<p>At the Sit-in-Inn all four elements were happenning in equal measure</p>
<p>the wine, the service, and the overall ambience.</p>
<div class="coupon" id="modal">
<div class="modal-content3">
<p>Get 15% of your first Meal</p>
</div>
</div>
</div>
</section>
<div class="clear"></div>
<hr>
<div class="zipcode-class">
<h4>Find a driver near you!</h4>
<hr>
<p>Type in a zipcode below and click Go! to find a driver near you</p>
<form class="zip-input" id="zipcode-form" method="POST" action="">
<label for="zipcode">ZipCode</label>
<input type="number" id="zipcode" name="zipcode">
<input type="submit" value="Go!" onclick="checkZipCode()">
</form>
<p id="zip-result"></p>
</div>
</div>
</div>
<div class="clear"></div>
<br>
<footer>
<div class="footer-container">
<div class="site-nav box">
<h5>Site Navigation</h5>
<hr>
<ul>
<a href="#"><li>Home</li></a>
<a href="#"><li>Regitser</li></a>
<a href="#"><li>How it all Works</li></a>
</ul>
</div>
<div class="legal box">
<h5>Legal</h5>
<hr>
<ul>
<li>Terms and Conditions</li>
<li>Privacy Policy</li>
<li>About Us</li>
</ul>
</div>
<div class="contact box">
<h5>Contact Us</h5>
<hr>
<ul>
<li>F T I</li>
<li>Tel: 888-400-9000</li>
<li>Help</li>
</ul>
</div>
<div class="copyright">
<p>© 2019. All Rights Reserved</p>
<p>Version 1.0.0</p>
</div>
</div>
</footer>
<script src="./js/foodar1.js"></script>
</body>
</html>