-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample02.html
36 lines (36 loc) · 998 Bytes
/
example02.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The class selector</title>
<style>
body {
width: fit-content;
}
h1, h2, h3, h4 {
margin: 8px;
padding: 8px;
}
.subtitle {
color: royalblue;
font-style: italic;
}
h3.subtitle {
border: 2px dashed royalblue;
}
.subtitle.aside-title {
color: red;
}
</style>
</head>
<body>
<h1>“News” of the Word</h1>
<h2 class="subtitle">Language News You Won’t Find Anywhere Else (Because We Make It Up)</h2>
<article>
<h3 class="subtitle">Scientists Discover Elusive Soup-Nuts Continuum</h3>
</article>
<aside>
<h4 class="subtitle aside-title">Did You Know?</h3>
</aside>
</body>
</html>