-
Notifications
You must be signed in to change notification settings - Fork 0
/
form4.htm
52 lines (43 loc) · 1.29 KB
/
form4.htm
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
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Selcuk Cetiner</title>
<meta charset="utf-8">
</head>
<body>
<form>
<fieldset>
<legend>
Spor Seçim Formu:
</legend>
<table border="2" bgcolor="aqua" >
<tr>
<td>Adı:<br></td>
<td><input type="text" name="ad"></td>
<tr>
<td>Soyadı:<br>
<td><input type="text" name="soyad"></td>
</tr>
<tr>
<td>Sınıf:<br>
<td><input type="text" name="sınıf"></td>
</tr>
<tr>
<td>Numara:<br>
<td><input type="text" name="numara"></td>
</tr>
<select name="alanlar">
<option value="vol">VOLEYBOL</option>
<option value="bas">JUDO</option>
<option value="fut">FUTBOL</option>
<option value="hen">KARATE</option>
</select>
</table>
Mesajınız:<br>
<textarea name="mesaj" rows="15" cols="40">
</textarea>
</fieldset>
</form>
<a href="#">GERİ DÖN</a>
</body>
</html>