-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssnotes.html
More file actions
32 lines (32 loc) · 1.23 KB
/
cssnotes.html
File metadata and controls
32 lines (32 loc) · 1.23 KB
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
<!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>CSS Notes</title>
<link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<header id="top">
<h1>Prework Study Guide</h1>
<img src="./assets/bowtie-cat.png" alt="Profile image of cat wearing a bow tie." />
<h2>✨ Open the Console to See What's Happening ✨</h2>
</header>
<main>
<!-- Student code goes here -->
<section class="card" id="css-section">
<h2>CSS</h2>
<ul>
<li>A margin indicates how much space we want around the outside of an element</li>
<li>A padding indicates how much space we want around the content inside an element</li>
<li>Width sets the width of an element</li>
<li>Height sets the height of an element</li>
<li>Background-color specifies the background colour of an element</li>
<li>The display property specifies how an element is displayed</li>
<li>The box-shadow property adds shadow effects around an elements frame</li>
</ul>
</section>
</main>
</body>
</html>