-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
42 lines (39 loc) · 1.41 KB
/
form.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
<!DOCTYPE html>
<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">
<title>form</title>
<link rel="stylesheet" href="/nav.css">
</head>
<body>
<header>
<nav>
<ul><a href="/index.html">Home</a></ul>
<ul><a href="/form.html">form</a></ul>
<ul><a href="/table.html">Table</a></ul>
<ul><a href="/semantic.html">semantic</a></ul>
<ul><a href="">About us</a></ul>
</nav>
<h1>Welcome to my home</h1>
</header>
<h1>pitha utshob</h1>
<form action="#">
<p>Name <input type="text" placeholder="Enter your name"></p>
<fieldset>
<legend>Enter your info</legend>
<p>which pitha do you like?</p>
<p><input type="checkbox" name="pitha" id="vapa">vapa</p>
<p><input type="checkbox" name="pitha" id="tel">tel</p>
<p><input type="checkbox" name="pitha" id="chitoi">chitoi</p>
<p>How many do you want?</p>
<p><input type="radio" name="taka" id="10">10</p>
<p><input type="radio" name="taka" id="20">20</p>
<p><input type="radio" name="taka" id="30">30</p>
</fieldset>
<input type="submit" value="submit">
<input type="reset" value="reset">
</form>
</body>
</html>