-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex10.html
43 lines (37 loc) · 1.17 KB
/
index10.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
footer {
text-align: center;
}
</style>
</head>
<body>
<form action="index10.html" method="get">
Ime: <input type="text" name="ime" placeholder="tle vpises ime" /> <br />
Priimek: <input type="text" name="priimek" /> <br />
Geslo: <input type="password" required name="password" /> <br />
<br />
Izberi ozadje:
<select name="sadje">
<option value="banana">Banana</option>
<option value="hruska">Hruska</option>
<option value="jabolko">Jabolko</option>
</select>
<br /><br />
<input type="radio" name="spol" value="M" /> Moski
<input type="radio" name="spol" value="Z" /> Zenskic
<br /><br />
<input type="checkbox" name="vozilo" value="avto" /> Avto
<br />
<input type="checkbox" name="vozilo2" value="kombi" /> kombi
<br />
<input type="submit" name="btn" value="OK" />
</form>
<footer class="cen">
<a href="index9.html">Prejsnja stran</a> | <a href="index8.html">Naslednja stran</a>
</footer>
</body>
</html>