-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (79 loc) · 2.5 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
<!--
Copyright 2020 The Webments Maintainers and Contributors.
Use of this source code is governed by a LGPL-2.1-style license that can be
found in the LICENSE file.
-->
<!DOCTYPE html>
<html lang="en" class="dark1">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="main.css" />
<title>Webments | HTML</title>
</head>
<body>
<div class="container">
<h3 class="title">Webments</h3>
<h1>Plain HTML</h1>
<div class="elementsdiv">
<div class="elementdiv">
<h2>Buttons</h2>
<button class="bt bt-orange">Button</button>
<h3>Disabled</h3>
<button disabled>Button</button>
</div>
<div class="elementdiv">
<h2>Text and Typography</h2>
<h1>H1</h1>
<h2>H2</h2>
<h3>H3</h3>
<h4>H4</h4>
<h5>H5</h5>
<h6>H6</h6>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatibus ipsum asperiores commodi maiores esse
molestiae temporibus facere nam vero at veniam, minima placeat fuga, voluptates velit possimus dolor.
Blanditiis, doloremque?</p>
</div>
<div class="elementdiv">
<h2>Text fields</h2>
<input></input>
<h3>Disabled</h3>
<input disabled></input>
</div>
<div class="elementdiv">
<h2>Checkboxes</h2>
<input type="checkbox">Checkbox</input>
<h3>Disabled</h3>
<input disabled type="checkbox">Checkbox</input>
</div>
<div class="elementdiv">
<h2>Radio Buttons</h2>
<input type="radio">Radio</input>
<h3>Disabled</h3>
<input disabled type="radio">Checkbox</input>
</div>
<div class="elementdiv">
<h2>Code</h2>
<code class="dark3">code</code>
<pre class="dark3"><code>code</code></pre>
</div>
<div class="elementdiv">
<h2>Dropdowns</h2>
<select id="dropdown">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
<option value="4">Option 4</option>
</select>
<h3>Disabled</h3>
<select disabled id="dropdowndisabled">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
<option value="4">Option 4</option>
</select>
</div>
</div>
</div>
</body>
</html>