-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformdemo.html
More file actions
130 lines (120 loc) · 4.53 KB
/
Copy pathformdemo.html
File metadata and controls
130 lines (120 loc) · 4.53 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
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
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name=viewport content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/fontawesome-free-5.0.1/web-fonts-with-css/css/fontawesome-all.css">
<link rel="stylesheet" type="text/css" href="css/test.css">
</head>
<body>
<nav>
<ul class="w-90">
<li class="logo"><a href="index.html">GridIt!</a></li>
<li><a href="formdemo.html">Form Demo</a></li>
<!-- <li><a href="">Form Demo</a></li> -->
</ul>
</nav>
<main class="w-90">
<div class="row">
<div class="col-6 col-md-6 col-xs-12">
<form class="">
<label for="">Input</label>
<input type="text" name="" value="">
<label for="">Textarea</label>
<textarea name="name" rows="8" cols="80"></textarea>
</form>
</div>
<div class="col-6 col-md-6 col-xs-12">
<form class="">
<label for="">Date</label>
<input type="date" name="" value="" placeholder="1/1/19">
<label for="">Time</label>
<input type="time" name="" value="">
<label for="">Select</label>
<select class="" name="">
<option value="">1</option>
<option value="">2</option>
</select>
<button>btn</button>
<button class="btn-red">btn-red</button>
<button class="btn-blue">btn-blue</button>
<button class="btn-orange">btn-orange</button>
<button class="btn-green">btn-green</button>
<button class="btn-olive">btn-olive</button>
<button class="btn-solid-red">btn-solid-red</button>
<button class="btn-solid-blue">btn-solid-blue</button>
<button class="btn-solid-orange">btn-solid-orange</button>
<button class="btn-solid-olive">btn-solid-olive</button>
<button class="btn-small-blue">btn-small-blue</button>
</form>
</div>
</div>
<div class="row">
<div class="col-4 col-md-6 col-sm-6">
<label>Tel</label>
<input type="tel" name="" value="">
<label>Number</label>
<input type="number" name="" value="">
<label>Email</label>
<input type="email" name="" value="">
</div>
<div class="col-4 col-md-6 col-sm-6">
<label>Datetime-local</label>
<input type="datetime-local" name="" value="">
<label>Month</label>
<input type="month" name="" value="">
<label>Week</label>
<input type="week" name="" value="">
</div>
<div class="col-4 col-md-6 col-sm-6">
<label>Slider</label>
<input type="range" name="" value="">
<label>URL</label>
<input type="url" name="" value="">
<label>Color</label>
<input type="color" name="" value="#091842">
</div>
</div>
<div class="row">
<div class="col-4 col-md-6 col-sm-6">
<div class="input-group search">
<input type="search" name="" placeholder='Search...'>
<button>Go</button>
</div>
<div class="input-group serial">
<input id="checkbox1" type="checkbox" name="">
<label for="checkbox1">Checkbox</label>
</div>
<div class="input-group serial">
<input id="checkbox2" type="checkbox" name="" checked>
<label for="checkbox2">Checkbox</label>
</div>
</div>
<div class="col-4 col-md-6 col-sm-6">
<form>
<div class="input-group serial">
<input type="radio" id="option1" name="option" value="option1" checked>
<label for="option1">Option 1</label>
</div>
<div class="input-group serial">
<input type="radio" id="option2" name="option" value="option2">
<label for="option2">Option 2</label>
</div>
<div class="input-group">
<input type="radio" id="option3" name="option" value="option3">
<label for="option3">Option 3</label>
</div>
<div class="input-group">
<input type="radio" id="option4" name="option" value="option4">
<label for="option4">Option 4</label>
</div>
</form>
</div>
</div>
</main>
<footer>
<p>Made with <i class="fab fa-sass"></i> by Wasif Zaman</p>
</footer>
</body>
</html>