generated from fdnd/subtask
-
Notifications
You must be signed in to change notification settings - Fork 139
/
index.html
206 lines (169 loc) · 5.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
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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[Projectnaam] - Styleguide</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="projectnaam.css">
</head>
<body>
<header>
<h1>[Projectnaam] - Styleguide</h1>
<p>Dit is de styleguide voor het project [Projectnaam]. Hierin zijn een aantal huisstijl onderdelen gedefinieerd.</p>
<p>Gebruik de volgende gedeelde stylesheet binnen je eigen project:
<!-- Pas deze aan zodra deze repository live staat op GitHub Pages -->
<code><link rel="stylesheet" href="https://....github.io/.../projectnaam.css"></code>
</p>
</header>
<nav>
<a href="#kleur">Kleuren</a>
<a href="#typografie">Typografie</a>
<a href="#formulieren">Formulier elementen</a>
<!-- En eventueel meer categorieën -->
</nav>
<section id="kleur">
<h2>Kleuren</h2>
<p>Bij het onderdeel kleuren staat het kleurgebruik.</p>
<figure>
<code class="">#333333</code>
<figcaption>Kleur 1</figcaption>
</figure>
<figure>
<code class="">#666666</code>
<figcaption>Kleur 2</figcaption>
</figure>
<figure>
<code class="">#999999</code>
<figcaption>Kleur 3</figcaption>
</figure>
<figure>
<code class="color-example">#bada55</code>
<figcaption>Etc</figcaption>
</figure>
</section>
<section id="typografie">
<h2>Typografie</h2>
<p>Bij het onderdeel typografie worden fonts en groottes gedemonstreerd.</p>
<h1 class="">Kop 1</h1>
<h2 class="">Kop 2</h2>
<h3 class="">Kop 3</h3>
<h4 class="">Kop 4</h4>
<h5 class="">Kop 5</h5>
<p class="">Simpele alinea's</p>
<p class="">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<ul class="">
<li>Ongeordende lijsten met items</li>
<li>Met nog meer items</li>
<li>En nog een item</li>
</ul>
<ol class="">
<li>Geordende lijsten met items</li>
<li>Met nog meer items</li>
<li>En nog een item</li>
</ol>
<table class="">
<thead>
<tr>
<th>Tabelkop</th>
<th>Tabelkop</th>
<th>Tabelkop</th>
<th>Tabelkop</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
</tr>
<tr>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
</tr>
<tr>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
</tr>
<tr>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
</tr>
<tr>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
<td>Tabeldata</td>
</tr>
</tbody>
</table>
</section>
<section id="formulieren">
<h2>Formulier elementen</h2>
<p>Bij het onderdeel formulier elementen worden input, radio, checkbox en buttons gedemonstreerd.</p>
<form class="">
<label class="">
Text:
<input type="text" class="">
</label>
<fieldset class="">
<legend class="">Radio options:</legend>
<label class="">
<input type="radio" name="radio-options" value="option 1" checked class="">
Option 1
</label>
<label class="">
<input type="radio" name="radio-options" value="option 2" class="">
Option 2
</label>
<label class="">
<input type="radio" name="radio-options" value="option 3" class="">
Option 3
</label>
</fieldset>
<fieldset class="">
<legend class="">Checkbox</legend>
<label class="">
<input type="checkbox" name="checkbox-1" checked class="">
Checkbox 1
</label>
<label class="">
<input type="checkbox" name="checkbox-2" class="">
Checkbox 2
</label>
<label class="">
<input type="checkbox" name="chekcbox-3" class="">
Checkbox 3
</label>
</fieldset>
<label class="">
Search:
<input type="search" class="">
</label>
<label class="">
Tel:
<input type="tel" class="">
</label>
<label class="">
Range:
<input type="range" class="">
</label>
<input type="submit" value="Submit button" class="">
<button type="button" class="">Button</button>
</form>
</section>
<!-- En eventueel meer categorieën -->
</body>
</html>