forked from kjonathante/whattoeat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
decidepage.html
33 lines (29 loc) · 964 Bytes
/
decidepage.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
<!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">
<title>What Do You Wanna Eat?</title>
</head>
<body>
<section id="decidePage">
<div class="container" id="decideContainer">
<div id="locationDiv">
<h2>WHAT'S YOUR ADDRESS?</h2>
<input id="location" type="textbox" value="">
<button class="decideButtons" id="addressButton">SUBMIT</button>
</div>
<div id="chooseFoodDiv">
<h2>WHAT DO YOU FEEL LIKE EATING?</h2>
<input id="food" type="textbox" value="">
<button class="decideButtons" id="search"><i class="fas fa-search"></i></button>
</div>
<div id="randomDiv">
<h2>STILL DON'T KNOW?</h2>
<button class="decideButtons" id="randomButton">RANDOMLY CHOOSE</button>
</div>
</div>
</section>
</body>
</html>