-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 1.86 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mad Libs</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<h1 style="text-align: center;">Mad Libs</h1>
<div class="container">
<h3 style="text-align: center;">Fill out the form to see your Mab Lib!</h3>
<hr style="margin-top: 1em;" />
<form>
<div class="form-group">
<label for="adj1">Adjective</label>
<input type="text" id="adj1" name="adj1">
</div>
<div class="form-group">
<label for="noun1">Noun</label>
<input type="text" id="noun1" name="noun1">
</div>
<div class="form-group">
<label for="adj2">Adjective</label>
<input type="text" id="adj2" name="adj2">
</div>
<div class="form-group">
<label for="clothing">Clothing</label>
<input type="text" id="clothing" name="clothing">
</div>
<div class="form-group">
<label for="bodyPart">Body Part</label>
<input type="text" id="bodyPart" name="bodyPart">
</div>
<div class="form-group">
<label for="verb1">Verb</label>
<input type="text" id="verb1" name="verb1">
</div>
<div class="form-group">
<label for="food">Food</label>
<input type="text" id="food" name="food">
</div>
<button class="submit" id="submit">Submit</button>
</form>
<hr style="margin-top: 1em" />
<p class="mad-lib"></p>
</div>
<script src="main.js"></script>
</body>
</html>