-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathforms.html
More file actions
41 lines (36 loc) · 1001 Bytes
/
forms.html
File metadata and controls
41 lines (36 loc) · 1001 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
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style3.css">
</head>
<body>
<form action="" method="get">
<ul>
<p>
<lable for="name">Enter your firstname:</lable>
<input id="name" name="name"/>
</p>
<p>
<lable for="name">Enter your surname:</lable>
<input id="name" name="name"/>
</p>
<p>
<lable for="commnets">Your comments:</lable>
<textarea id="comments" name="comments" rows="20" cols="30" ></textarea>
</p>
<li>
<lable for="css">Do you like CSS?</lable>
<input type="checkbox" />
</li>
<li>
<lable for="css">Favourite language?</lable>
<input type="radio" />CSS
<input type="radio" />HTML
<input type="radio" />JAVA
<input type="radio" />RUBY
</li>
<p><input type="submit" value="Go!" /></p>
</ul>
</form>
</body>
</html>