-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path005 htmlnesneleri.html
47 lines (36 loc) · 1.49 KB
/
005 htmlnesneleri.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Temel HTML Nesneleri</title>
</head>
<body>
<form>
<h3>Kayıt Formu</h3>
<label for="adi">Adı</label>
<input type="text" name="adi" id="adi"> <br>
<label for="soyadi">Soyadı</label>
<input type="text" name="soyadi" id="soyadi"> <br>
<label for="cinsiyet">Cinsiyet</label>
<input type="radio" name="cinsiyet" id="erkek" checked> Erkek
<input type="radio" name="cinsiyet" id="kadin"> Kadın
<br>
<label for="kullanici">Kullanıcı Adı</label>
<input type="text" name="kullanici" id="kullanici"> <br>
<label for="eposta">E-posta</label>
<input type="email" name="eposta" id="eposta"> <br>
<label for="hobi">Hobiler</label> <br>
<input type="checkbox" name="kitap" id="kitap" checked> Kitap <br>
<input type="checkbox" name="sinema" id="sinema"> Sinema <br>
<input type="checkbox" name="tiyatro" id="tiyatro"> Tiyatro <br>
<label for="">Doğum Yeri</label>
<select name="dogumyeri" id="dogumyeri">
<option value="06">Ankara</option>
<option value="34" selected>İstanbul</option>
<option value="35">İzmir</option>
</select> <br> <br>
<button>Kaydet</button>
</form>
</body>
</html>