-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchapter11.html
More file actions
58 lines (53 loc) · 1.63 KB
/
chapter11.html
File metadata and controls
58 lines (53 loc) · 1.63 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chapter 11: Getting to Know CSS</title>
<link rel="stylesheet" href="style.css">
<style>
.demo-box { width:120px; height:50px; margin:5px; display:inline-block; }
</style>
</head>
<body>
<h2 class="chapter-header" id="heading">Chapter 11: GETTING TO KNOW CSS</h2>
<div class="tag-section">
<h3>CSS Syntax</h3>
<div class="tag-demo">
<p style="color:red; font-size:20px;">This is styled with inline CSS.</p>
</div>
</div>
<div class="tag-section">
<h3>Comments</h3>
<div class="tag-demo">
<p>Open the source code to see <code>/* CSS Comment */</code>.</p>
</div>
</div>
<div class="tag-section">
<h3>Units</h3>
<div class="tag-demo">
<div class="demo-box" style="background:lightblue; width:5cm;">5cm wide</div>
<div class="demo-box" style="background:lightgreen; width:100px;">100px wide</div>
<div class="demo-box" style="background:lightcoral; width:10em;">10em wide</div>
<div class="demo-box" style="background:khaki; width:20rem;">20rem wide</div>
</div>
</div>
<div class="tag-section">
<h3>Shorthand Properties</h3>
<div class="tag-demo">
<p style="margin:10px 20px; border:2px solid blue; padding:5px;">
This uses shorthand margin & border.
</p>
</div>
</div>
<div class="tag-section">
<h3>Where to put CSS</h3>
<div class="tag-demo">
<p style="color:purple;">This is Inline CSS.</p>
<p class="internal">This is Internal CSS.</p>
</div>
<style>
.internal { color: teal; }
</style>
</div>
</body>
</html>