-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 993 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css"
<title>My Cheat Sheet</title>
</head>
<body>
<h1>My Cheat Sheet</h1>
<h2>Basic CSS Properties</h2>
<table class="myTable">
<tr>
<th>Property</th>
<th>Functionality</th>
</tr>
<tr>
<td>"color: "</td>
<td>- color tells you the color of the text</td>
</tr>
<tr>
<td>"background color: "</td>
<td>- background is the color behind the text</td>
</tr>
<tr>
<td>"text-align: "</td>
<td>- this allows you to center, right, or left align your text</td>
</tr>
<tr>
<td>"font-family: "</td>
<td>- this allows you to change the font</td>
</tr>
</table>
</body>
</html>