-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
89 lines (76 loc) · 2.87 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Local First</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="smartphone">
<div class="content">
<div class="head">
<img src="img/profile.png" alt="profile" class="profile">
<div class="dropdown">
<img src="img/settings.png" alt="settings" class="settings">
<div class="dropdown-content">
<a href="business-home.html">Switch to Business</a>
<a href="#">Update Info</a>
<a href="#">Report User</a>
<a href="#">Help</a>
<a href="index.html">Logout</a>
</div> <!-- end of dropdown-content -->
</div><!-- end of dropdown -->
</div> <!-- end of head -->
<form >
<h4 class="home-header">
What are you looking for?
</h4>
<label class="types" for="business-type">
Type of Business
</label>
<select class="home-input" id="business-type" name="business-type">
<option value="restaurants">Restaurants</option>
<option value="hardware">Hardware Store</option>
<option value="retail">Retail</option>
<option value="explore">Explore my area</option>
</select>
<label class="types" for="radius">
Distance
</label>
<select class="home-input" id="radius" name="radius">
<option value="0.5">0.5 Miles</option>
<option value="1">1 miles</option>
<option value="5">5 miles</option>
<option value="10">10 miles</option>
</select>
<label class="types" for="location">
Where are you?
</label>
<input class="home-input" id="location" type="text" name="location" value="location" placeholder="zipcode or address">
</form>
<a class="button-black" href="locations.html">
Search
</a>
<div class="spacer"></div>
<footer class="footer">
<div class="nav">
<a href="business-home.html" >
<img src="img/home.png" class="nav" alt="">
<h5 class="footer-text">Home</h5>
</a>
</div>
<div class="nav">
<a href="offers1.html">
<img src="img/offers.png" class="nav" alt="">
<h5 class="footer-text">Promos</h5>
</a>
</div>
</footer>
</div>
</div>
</body>
</html>