-
Notifications
You must be signed in to change notification settings - Fork 391
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (40 loc) · 1.31 KB
/
index.html
File metadata and controls
47 lines (40 loc) · 1.31 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
<!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>userInput</title>
<link rel="stylesheet" href="lib/css/style.css">
</head>
<body>
<div class="main_container">
<h1 id="main_title"></h1>
<p id="story_result"></p>
<form class="form_container">
<div class="adlib">
<label for="title_input">title:</label>
<input type="text" id="title_input" placeholder="My Ad Lib">
</div>
<div class="adlib">
<label for="noun">noun:</label>
<input type="text" id="noun" placeholder="Pizza">
</div>
<div class="adlib">
<label for="verb">verb:</label>
<input type="text" id="verb" placeholder="Exercise">
</div>
<div class="adlib">
<label for="adjective">adjective:</label>
<input type="text" id="adjective" placeholder="Crazy">
</div>
<button id="submit_button">
Submit!
</button>
</form>
</div>
</div>
<!-- Loading JS -->
<script src="lib/js/main.js"></script>
</body>
</html>