-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
32 lines (31 loc) · 1.17 KB
/
index1.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
<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">
<link rel="stylesheet" href="css/index.css">
<title>Hidden Object</title>
</head>
<body>
<h1>Hidden Object Test</h1>
<h2>Instructions</h2>
<p>Find this bee!</p>
<img src="img/bee.png">
<img src="img/arrow.png">
<h3>Input your details</h3>
<form action="/action_page.php">
<div class = "details">
<LABEL for="name">Name: </LABEL>
<INPUT type="text" id="name" required><BR>
<LABEL for="age">Age: </LABEL>
<INPUT type="number" id="age" required><BR>
<label for="sex"> Sex: </label><BR>
<INPUT type="radio" name="sex" value="Male" id="male"> Male<BR>
<INPUT type="radio" name="sex" value="Female" id="female"> Female<BR>
<INPUT type="radio" name="sex" value="Non-Binary" id="nonbinary"> Non-Binary<BR>
<button type="button" id="start">Start Test</button>
</div>
</form>
<script src ="master.js"></script>
</body>
</html>