-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.61 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.61 KB
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
<!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>Food Roulette</title>
<link rel="stylesheet" href="./styles.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
</head>
<body>
<div class="container">
<h1 class="title">Food Roulette</h1>
<div class="mainSection">
<div class="sidebar">
<h2 class="sideListTitle">Food List:</h2>
<ol class='sideList'></ol>
</div>
<div class="menu">
<div class="details">
<p>Just type some food items below and then click generate! (Min: 2 | Max: 20)</p>
</div>
<div>
<form action="#r"class='mainForm'>
<input type="text" name="foodItem" id="foodInput" placeholder='"Lasagna"'>
<button class="addBtn">Add</button>
<button class="clearBtn">Clear</button>
<!-- <button class="testBtn">Test</button> -->
</form>
</div>
</div>
<div class="gen-container">
<button class="mainBtn">GENERATE</button>
</div>
</div>
<div class="dev-info">
<p class="dev">By: Norbey A.</p>
</div>
</div>
<script src="./script.js" type="text/javascript"></script>
</body>
</html>