-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path15.Forms.html
More file actions
49 lines (44 loc) · 1.63 KB
/
15.Forms.html
File metadata and controls
49 lines (44 loc) · 1.63 KB
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
<!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>HTML5 Form ve Inputs</title>
</head>
<body>
<form>
<label for="name">Name</label><br />
<input type="text" id="name" name="name" /> <br />
<label for="email">Email</label><br />
<input type="email" id="email" name="email" /><br />
<label for="password">Password</label><br />
<input type="password" id="password" name="password"><br />
<label for="date">Date</label><br />
<input type="date" id="date" name="date" /><br />
Gender <br />
Male
<input type="radio" name="gender" value="male" />
Female
<input type="radio" name="gender" value="female" />
Other
<input type="radio" name="gender" value="other" /><br />
Hobbies <br />
Tecnology
<input type="checkbox" name="tech" id="tech" />
Music
<input type="checkbox" name="music" id="music" />
Art
<input type="checkbox" name="art" id="art" /><br />
Degree
<select name="degree" id="degree">
<option value="bachelor">Lisans</option>
<option value="msc">Yüksek Lisans</option>
<option value="phd">Doktora</option>
</select><br />
<textarea name="message" id="mesage" cols="30" rows="10" placeholder="Your Message"></textarea><br />
<button type="reset">Sıfırla</button>
<input type="submit" value="Submit" />
</form>
</body>
</html>