-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (49 loc) · 2.05 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
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en-US">
<html>
<head>
<meta charset="utf-8">
<title>lang-form</title>
<h1>What is your favourite language?</h1>
<form action="" method="post"></form>
<fieldset>
<legend>Add user</legend>
<label>First name:
<input type="text" input="name">
</label>
<label>Last name:
<input type="text" input="lastName">
</label>
<label>email:
<input type="email" input="email">
</label>
<p>
Choose your favourite programming language:
</p>
<div>
<label for="html">HTML</label>
<input type="radio" id="html" name="html_choice">
<label for="css">CSS</label>
<input type="radio" id="css" name="css_choice">
<label for="javascript">JavaScript</label>
<input type="radio" id="javascript" name="js_choice">
</div>
<p>
<label for="comments">Comments:</label>
<textarea id="comments" name="add_comments"></textarea>
</p>
<label for="date">Current date:</label>
<input type="date" id="date" name="current_date">
<p>
<input type="checkbox" id="sign" name="sign_news">
<label for="sign">Sign up for newsletter</label>
<input type="checkbox" id="agree" name="agree_terms">
<label for="agree">Agree to terms and conditions</label>
</p>
<button type="submit">Submit</button>
</fieldset>
</form>
</head>
<body>
</body>
</html>