forked from Conorc1000/fac6d1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.html
58 lines (46 loc) · 1.68 KB
/
app.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
57
58
<!DOCTYPE html>
<HTML lang="en">
<head>
<link type="text/css" rel="stylesheet" href="app.css"/>
<title id="title"> Inner animal app</title>
</head>
<body>
<h1> Find your inner animal </h1>
<p> Take the test and unleash your inner beast! </p>
<form action="appform.asp" method ="post">
<div id="name">
What's your name? <input type="text" name="username">
</div>
<div id="description">
<h2>Which of the following best describes you? </h2>
<input type="radio" name= "describe" value="0"> Very small <br>
<input type="radio" name= "describe" value="1"> Big <br>
<input type="radio" name= "describe" value="2"> Shy <br>
<input type="radio" name= "describe" value="3"> Happy <br>
<input type="radio" name= "describe" value="4"> Awesome <br>
</div>
<div id="food">
<h2>What's your favourite food?</h2>
<input type="checkbox" name="food" value="0"> Vegetables <br>
<input type="checkbox" name="food" value="1"> Salad <br>
<input type="checkbox" name="food" value="2"> Nuts <br>
<input type="checkbox" name="food" value="3"> Fish <br>
<input type="checkbox" name="food" value="4"> Fruit <br>
</div>
<div id="activity">
<h2> What's your favourite activity?</h2>
<select>
<option name="activity" value="0">Swimming</option>
<option name="activity" value="1">Chilling</option>
<option name="activity" value="2">Hugging</option>
<option name="activity" value="3">Smiling</option>
<option name="activity" value="4">Being cute</option>
</select>
</div>
<div>
<input type="submit" value="Generate">
</div>
</form>
</body>
<script type="text/javascript" src="input.js"></script>
</HTML>