-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
49 lines (44 loc) · 1.45 KB
/
form.html
File metadata and controls
49 lines (44 loc) · 1.45 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
</head>
<body>
<form action="index.html">
Adı:<input type="text" name="name1" id="adi" required placeholder="Adınızı giriniz..."><br>
Password:<input type="password" name="name2" id="sifre" required placeholder="Şifrenizi giriniz..."><br/>
email:<input type="email" name="name3" id="email" required placeholder="Şifrenizi giriniz..."><br/>
<hr><hr>
<select name="" id="">
<option value="">Frondend</option>
<option value="">Frondend-2</option>
<option value="">Frondend-3</option>
</select>
<br>
<hr><hr>
<select name="" id="" multiple>
<option value="">Frondend</option>
<option value="">Frondend-2</option>
<option value="">Frondend-3</option>
</select><hr><hr>
<label for="number">sayı:</label><br>
<input type="number" id="number " name="server_baglanti" min="10" max="100" step="5" value="25"><br><br>
<hr><hr>
<label>Cinsiyet:</label><br>
Bayan:<input type="radio" name="cinsiyet" id="cns">
Erkek:<input type="radio" name="cinsiyet" id="cns-2">
<hr><hr>
<label>Kitaplar:</label><br>
Java:<input type="checkbox" name="check1" id="kitap">
JSF:<input type="checkbox" name="check2" id="kitap2">
Spring:<input type="checkbox" name="check3" id="kitap3">
<hr><hr>
<br>
<br>
<input type="reset" value="Temizle">
<input type="submit" value="Gönder">
</form>
</body>
</html>