-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook.html
29 lines (29 loc) · 935 Bytes
/
book.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body style="background-color: #E7D9EA;">
Some of my favourity books are:
<ol type="A">
<li>Me before you</li>
<li>The room on the roof</li>
<li>Revolution 2020</li>
<li>Eleanor and Park</li>
</ol>
(Optional)
<form class="" action="index.html" method="post">
<label>Your name</label>
<input type="text" name="" value=""> <br>
<label>Select your favourite color</label>
<input type="color" name="" value=""><br>
<label>Female</label>
<input type="checkbox" name="" value=""><br>
<label>Male</label>
<input type="radio" name="" value="Others"><br>
<label>Password:</label> <input type="password" name="" value=""><br>
<input type="submit" name="" value="Submit">
</form>
</body>
</html>