-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHarjoitus9.html
71 lines (55 loc) · 1.42 KB
/
Harjoitus9.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="fi">
<title> Harjoitus 1</title>
<!-- merkistö -->
<meta charset="UTF-8"/>
<!-- tyylimääritykset -->
<style>
<!-- tyylit tänne -->
</style>
<!-- js -->
<script>
<!-- scriptit tänne -->
</script>
<head>
<body>
<h2> Harjoitus 2</h2>
<!-- Peruslomake -->
<form method="post" action="">
<!-- textarea element -->
<!-- select-elementtti -->
<!-- Peruslomake -->
<form method="post" action="">
<!-- input element -->
etunimi: <input type="type" name "etunimi" size="10"> <br>
sukunimi: <input type="type" name "sukunimi" size="10"> <br>
sähköposti: <input type="type" name "Saehköposti" size="10"> <br>
puhelin: <input type="type" name "puhelin" size="10"> <br> <br>
</br>
</form>
Ikäryhmä<br>
<select name="Valinta" size="1">
<option> alle 20</option>
<option> 20-30</option>
<option> 30-40</option>
<option> yli 40</option>
</select><br>
<radio method="post" action="">
<!-- input element -->
<br>PHP-osaamisesi<br>
Aloittelija: <input type="radio" name="taso" size="10"> <br>
Noviisi: <input type="radio" name="taso" size="10"> <br>
Ammattilainen: <input type="radio" name ="taso" size="10"> <br>
</br>
</radio>
Tarkempi kuvaus PHP-osaamisestasi<br>
<textarea name="palaute" rows="3" cols="40">
Tirjoita Kekstiä...
</textarea> <br>
<br> <input type = "submit" name="submit" value="Lähetä tiedot">
<br> <input type = "reset" name="reset" value="Nollaa"> <br>
</br>
</form>
</body>
</head>
</html>