-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
42 lines (41 loc) · 1.34 KB
/
Copy pathform.html
File metadata and controls
42 lines (41 loc) · 1.34 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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Form Oluşturma</title>
</head>
<body>
<h1>Form Oluşturma Örneği</h1> <!-- Başlık -->
<form name="kayit" action="kayit.php" method="GET">
Ad Soyad:
<input type="text" name="adsoyad" id="adsoyad" size="20" maxlength="30" required>
<br>
E-posta:
<input type="email" name="eposta" id="eposta" size="20" maxlength="50" required>
<br>
Website:
<input type="url" name="website" id="website" size="20" maxlength="50">
<br>
Yaş:
<input type="number" name="yas" id="yas" min="1" max="120" required>
<br>
Cinsiyet:
<input type="radio" name="cinsiyet" value="erkek" checked>Erkek
<input type="radio" name="cinsiyet" value="kadin">Kadın
<br>
İlgi Alanları:
<input type="checkbox" name="ilgi1" value="spor">Spor
<input type="checkbox" name="ilgi2" value="muzik">Müzik
<input type="checkbox" name="ilgi3" value="sinema">Sinema
<br>
Mesaj:
<br>
<textarea name="mesaj" id="mesaj" rows="4" cols="30" maxlength="200"></textarea>
<br>
<input type="submit" value="Gönder" >
<input type="reset" value="Temizle">
</form>
</body>
</html>