-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (98 loc) · 3.98 KB
/
index.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <link href="" rel="shortcut icon" type="image/ico" /> <!-- -->
<!-- <meta name="description" content="" /> <!-- -->
<!-- <meta name="keywords" content="" /> <!-- -->
<!-- <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <!-- -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- -->
<title>form api</title> <!-- -->
<link rel="stylesheet" type="text/css" href="css/screen.css" /> <!-- -->
<!-- <script type="text/javascript" src="http://code.jquery.com/jquery-2.0.2.min.js"></script> -->
<!-- <script type="text/javascript" src="js/apiform.js"></script> -->
</head>
<body>
<form method="post">
<!-- textarea
================================================================================================ -->
<h2>Text area</h2>
<div class="form-item">
<label for="ta">Tekst area: </label>
<div class="tarea">
<label class="input-wrapp">
<textarea name="test" cols="50" rows="10" id="ta" ></textarea>
</label>
</div>
</div>
<hr/>
<!-- field text
================================================================================================ -->
<h2>field</h2>
<div class="form-item">
<label for="">Test</label>
<label class="input-wrapp">
<input type="text" class="form-text" />
</label>
</div>
<hr/>
<!-- select
================================================================================================ -->
<h2>form select option</h2>
<div class="form-item">
<label for="">dadasdasdasdas</label>
<label class="input-wrapp">
<select>
<option value="">test dadasddada</option>
<option value="">test dadadsada </option>
<option value="">test dad </option>
<option value="">test dasdas das d dsada sdas</option>
</select>
</label>
</div>
<hr />
<!-- form checkbox
================================================================================================ -->
<h2>Form checkbox</h2>
<div class="form-item">
<label class="option block">
<input type="checkbox" value="1" />
Automatic alias
</label>
<label class="option block">
<input type="checkbox" valuye="2" />
Second checkbox
</label>
<label class="option">
<input type="checkbox" valuye="2" />
Second checkbox
</label>
<label class="option">
<input type="checkbox" valuye="2" />
dex checkbox
</label>
</div>
<hr />
<!-- radio
================================================================================================ -->
<h2>radio button</h2>
<div class="form-item">
<label for="r1">
<input id="r1" type="radio" name="test1" />
prvi
</label>
<label for="r2">
<input id="r2" type="radio" name="test1" />
drugi
</label>
</div>
<hr/>
<!-- action button
================================================================================================ -->
<h2>action button</h2>
<div class="action-wrap">
<input class="button" type="submit" value="submit" />
<input class="button" type="button" value="button" />
</div>
</form>
</body>
</html>