-
Notifications
You must be signed in to change notification settings - Fork 2
/
new.html
46 lines (41 loc) · 1.5 KB
/
new.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
<!DOCTYPE html>
<html>
<head>
<title>Bespoke Eat Mo, powered by WeHo Eat Mo</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link href='http://fonts.googleapis.com/css?family=Chelsea+Market' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<h1 class="fancy-title red">Bespoke Eat Mo</h1>
<h2>Make your own version of <a href="index.html">WeHo Eat Mo</a>!</h2>
<p class="question">Where are you located?</p>
<input type="text" class="regular-input" id="location-input">
<fieldset id="custom-restaurants">
<label>Restaurant Name</label>
<input type="text" class="restaurant-name">
<label>Restaurant Name</label>
<input type="text" class="restaurant-name">
<label>Restaurant Name</label>
<input type="text" class="restaurant-name">
<label>Restaurant Name</label>
<input type="text" class="restaurant-name">
<label>Restaurant Name</label>
<input type="text" class="restaurant-name">
</fieldset>
<button id="add-mo">
Add mo' restaurants
</button>
<button id="preview">
Preview your page
</button>
</div>
<footer>
<p>
Made with ❤ by Stephanie A. Higa in West Hollywood · sahiga at gmail · <a href="https://github.com/sahiga/weho-eat-mo">GitHub source</a>
</p>
</footer>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?libraries=places&sensor=true"></script>
<script type="text/javascript" src="bespoke.js"></script>
</body>
</html>