-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (42 loc) · 965 Bytes
/
index.html
File metadata and controls
48 lines (42 loc) · 965 Bytes
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>
<head>
<title>Lions</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>Lions</h1>
<form name="lions">
<div class="textbox">
<input
type="text"
required
name="lion-name"/>
<span class="highlight"></span>
<span class="bar"></span>
<label>lion name</label>
</div>
<div class="textbox">
<input
type="text"
required
name="lion-pride"/>
<span class="highlight"></span>
<span class="bar"></span>
<label>lion pride</label>
</div>
<input type="number" name="lion-age">
<select name="select">
<option value="female" selected>female</option>
<option value="male">male</option>
</select>
<button>submit</button>
</form>
<div class="content">
<ul class="lion-list"></ul>
</div>
</main>
<script src="app.js"></script>
</body>
</html>