-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (134 loc) · 5.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cheat Sheet</title>
<link href="./Resources/CSS/index.css" rel="stylesheet" type="text/css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Denk+One&display=swap" rel="stylesheet">
</head>
<body>
<h1>HTML & CSS Cheat Sheets</h1>
<div class="row">
<div class="column" style="background-color:#33BBC5">
<h2>HTML Table Reference</h2>
<table class="center2">
<thead>
<tr>
<th>Tag</th>
<th>Name</th>
<th colspan="2">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><table></td>
<td>table</td>
<td>The wrapper element for all HTML tables.</td>
</tr>
<tr>
<td><thead></td>
<td>table head</td>
<td>The set of rows defining the column headers.
</tr>
<tr>
<td><tbody></td>
<td>table body</td>
<td>This tag is used to group the body content in an <br>HTML table. Works like
the <body> tag</td>
</tr>
<tr>
<td><tr></td>
<td>table row</td>
<td>The table row container.</td>
</tr>
<tr>
<td><td></td>
<td>table data</td>
<td>The set of rows containing actual table data.</td>
</tr>
<tr>
<td><tfoot></td>
<td>table foot</td>
<td>The set of rows defining the footer in a table.</td>
<td></td>
</tr>
</tbody>
</table>
<img src="./Resources/Images/werken-in-de-cloud.png" alt="working at laptop" class="center">
</div>
<div class="column" style="background-color:#85E6C5;">
<h2>CSS Backgrounds</h2>
<table>
<thead>
<tr>
<th>Background</th>
<th> Properties</th>
</tr>
</thead>
<tbody>
<tr>
<td>background-image</td>
<td> url | Gradients | none</td>
</tr>
<tr>
<td>background-position</td>
<td>top-left | top center | top right | center left| center right | etc</td>
</tr>
<tr>
<td>background-size</td>
<td>length | auto | cover | contain</td>
</tr>
<tr>
<td>background-color</td>
<td>color | transparent </td>
<tr>
<td>background-attachment</td>
<td>scroll | fixed | local</td>
</tr>
</tbody>
</table>
<img src="./Resources/Images/Office-365.png" alt="working at laptop" class="center">
</div>
<div class="column" style="background-color:#C8FFE0;">
<h2>CSS Font</h2>
<table>
<thead>
<tr>
<th>Font</th>
<th>Properties</th>
</tr>
</thead>
<tbody>
<tr>
<td>font-style</td>
<td>normal | italic | oblique | inherit</td>
</tr>
<tr>
<td>font-variant</td>
<td>normal | smal-capps | inherit</td>
</tr>
<tr>
<td>font-weight</td>
<td>normal | bold | lighter | inherit</td>
</tr>
<tr>
<td>font-size/line-height</td>
<td>xx-small | x-small | small | medium | large | x-large | xxlarge | smaller | large | inherit
| length</td>
<tr>
<td>font-family</td>
<td>serif | sans-serif | monospace | cursive | fantasy | system-ui | emoji | math | fangsong |
inherit | initial | unset</td>
</tr>
</tbody>
</table>
<img src="./Resources/Images/it-oplossing.png" alt="working at laptop" class="center">
</div>
</div>
</div>
<p>© 2023 by ECG productions</p>
</body>
</html>