-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
237 lines (213 loc) · 11.3 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pagina prueba</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="flex f-column ai-center p1">
<div class="text-center">
<h2 class="fw-bold text-xxxl my1">Framework hesu daza, anhe heredia</h2>
<div class="w100">
<fieldset class="flex wrap jc-around ai-center">
<legend class="fw-bold text-xxl mb2">Text</legend>
<p class="m1 primary">Primary</p>
<p class="m1 secondary">Secundary</p>
<p class="m1 danger">Danger</p>
<p class="m1 warning">Warning</p>
<p class="m1 success">Success</p>
<p class="m1 bg-dark light p1">Light</p>
<p class="m1 dark">Dark</p>
</fieldset>
</div>
<br>
<div>
<fieldset class="flex wrap jc-around ai-center">
<legend class="fw-bold text-xxl my1">Buttons</legend>
<button class="btn m1">Normal</button>
<button class="btn btn-primary m1">Primary</button>
<button class="btn btn-secondary m1">Secondary</button>
<button class="btn m1">Reset</button>
<button class="btn m1">Cancel</button>
<button class="btn btn-danger m1">Danger</button>
<button class="btn btn-warning m1">Warning</button>
<button class="btn btn-success m1">Success</button>
<button disabled class="btn btn-disabled m1">Disabled</button>
</fieldset>
</div>
<br>
<div>
<legend class="fw-bold text-xxl my1">Inputs</legend>
<h1 class="text-lg">Text</h1>
<div class="my2 flex jc-around ai-center wrap">
<input type="text" class="m1 input-primary" placeholder="Text">
<input type="text" class="m1 input-secondary" placeholder="Text">
<input type="text" class="m1 input-danger" placeholder="Text">
<input type="text" class="m1 input-warning" placeholder="Text">
<input type="text" class="m1 input-success" placeholder="Text">
<input type="text" class="m1 input-dark" placeholder="Text">
</div>
<h1 class="text-lg">Password</h1>
<div class="my2 flex jc-around ai-center wrap">
<input type="password" class="m1 input-primary" placeholder="Password">
<input type="password" class="m1 input-secondary" placeholder="Password">
<input type="password" class="m1 input-danger" placeholder="Password">
<input type="password" class="m1 input-warning" placeholder="Password">
<input type="password" class="m1 input-success" placeholder="Password">
<input type="password" class="m1 input-dark" placeholder="Password">
</div>
<h1 class="text-lg">File</h1>
<div class="my2 flex jc-around ai-center">
<label id="labelFile" for="file">Select a file</label>
<input id="file" name="file" type="file" class="m1">
</div>
<h1 class="text-lg">Radiobutton</h1>
<div class="my2 flex f-column jc-around ai-center">
<div class="radio radio-success">
<input type="radio" name="example" id="example1">
<label for="example1">Example 1</label>
</div>
<div class="radio radio-primary">
<input type="radio" name="example" id="example2">
<label for="example2">Example 2</label>
</div>
<div class="radio radio-danger">
<input type="radio" name="example" id="example3">
<label for="example3">Example 3</label>
</div>
<div class="radio radio-warning">
<input type="radio" name="example" id="example4">
<label for="example4">Example 4</label>
</div>
<div class="radio radio-secondary">
<input type="radio" name="example" id="example5">
<label for="example5">Example 5</label>
</div>
<div class="radio">
<input type="radio" name="example" id="example6">
<label for="example6">Example 6</label>
</div>
</div>
<h1 class="text-lg">Range</h1>
<div>
<input type="range" class="range" name="" id="">
<input type="range" class="range range-primary" name="" id="">
<input type="range" class="range range-secondary" name="" id="">
<input type="range" class="range range-danger" name="" id="">
<input type="range" class="range range-success" name="" id="">
<input type="range" class="range range-warning" step="2" min="0" max="10" name="" id="">
<div class="bg-dark w25 mxAuto mt2 mb2 flex jc-center ai-center p1">
<input type="range" class="range range-light" step="2" min="0" max="10" name="" id="">
</div>
</div>
<h1 class="text-lg mb1">Checkbox</h1>
<div class="flex wrap f-column jc-center ai-center">
<div class="flex">
<input type="checkbox" name="example_ch" id="example_ch1" class="checkbox checkbox-primary">
<label for="example_ch1">Example 1</label>
</div>
<div class="flex">
<input type="checkbox" name="example_ch" id="example_ch2" class="checkbox checkbox-secondary">
<label for="example_ch2">Example 2</label>
</div>
<div class="flex">
<input type="checkbox" name="example_ch" id="example_ch3" class="checkbox checkbox-success">
<label for="example_ch3">Example 3</label>
</div>
<div class="flex">
<input type="checkbox" name="example_ch" id="example_ch4" class="checkbox checkbox-danger">
<label for="example_ch4">Example 4</label>
</div>
<div class="flex">
<input type="checkbox" name="example_ch" id="example_ch5" class="checkbox checkbox-warning">
<label for="example_ch5">Example 5</label>
</div>
<div class="flex">
<input type="checkbox" name="example_ch" id="example_ch6" class="checkbox">
<label for="example_ch6">Example 6</label>
</div>
</div>
<h1 class="text-lg mt2">Select</h1>
<div class="mb2 flex jc-around ai-center">
<select class="select">
<option selected disabled value="-1">Escoge una opción</option>
<option value="Opcion1">Opción 1</option>
<option value="Opcion2">Opción 2</option>
<option value="Opcion3">Opción 3</option>
</select>
</div>
<h1 class="text-xxl">Links</h1>
<div class="my2 flex wrap jc-around ai-center">
<a class="m1 link link-primary" href="#">Primary Link</a>
<a class="m1 link link-secondary" href="#">Secondary Link</a>
<a class="m1 link link-danger" href="#">Danger Link</a>
<a class="m1 link link-warning" href="#">Warning Link</a>
<a class="m1 link link-success" href="#">Success Link</a>
<a class="m1 link link-light bg-dark pb1" href="#">Light Link</a>
</div>
</div>
<br>
<div>
<h1 class="text-xxl">List</h1>
<fieldset class="w100 flex jc-center">
<ul class="ul-container m2">
<li class="list list">Elemento 0</li>
<li class="list list-primary">Elemento 1</li>
<li class="list list-secondary">Elemento 2</li>
<li class="list list-danger">Elemento 3</li>
<li class="list list-warning">Elemento 4</li>
<li class="list list-success">Elemento 5</li>
<div class="bg-dark py1">
<li class="list list-light">Elemento 6</li>
</div>
</ul>
<ol class="ol-container m2">
<li class="list">Elemento 0</li>
<li class="list list-primary">Elemento 1</li>
<li class="list list-secondary">Elemento 2</li>
<li class="list list-danger">Elemento 3</li>
<li class="list list-warning">Elemento 4</li>
<li class="list list-success">Elemento 5</li>
<div class="bg-dark p1">
<li class="list list-light">Elemento 6</li>
</div>
</ol>
</fieldset>
</div>
<br>
<div>
<h1>Textarea</h1>
<textarea class="" rows="10"></textarea>
</div>
<div class="w100 flex f-column jc-center">
<h1>Icons</h1>
<fieldset class="w100 flex jc-around ai-center">
<a href="#" class="icon icon-dc">
</a>
<a class="icon icon-ig">
</a>
<a class="icon icon-wh">
</a>
<a class="icon icon-in">
</a>
<a class="icon icon-fb">
</a>
<a class="icon icon-gh">
</a>
<a class="icon icon-gm">
</a>
<a class="icon icon-tch">
</a>
<a class="icon icon-rd">
</a>
<a class="icon icon-yt">
</a>
<a class="icon icon-tw">
</a>
</fieldset>
</div>
</div>
</body>
</html>