-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML and CSS 4.html
More file actions
37 lines (33 loc) · 843 Bytes
/
Copy pathHTML and CSS 4.html
File metadata and controls
37 lines (33 loc) · 843 Bytes
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
<!Doctype html>
<html>
<head>
<title>L3_CSS_Combinators _Demo</title>
<link rel="stylesheet" href="./CSS 4.css">
</head>
<body>
<h1 id="heading" class="font"> A <em>heading</em></h1>
<p class="font">A paragraph <em>with emphasis</em></p>
<header>
<h1>Header</h1>
</header>
<article>
<h1>Article</h1>
<p>paragraph 1</p>
<p>paragraph 2</p>
<footer>Article footer</footer>
</article>
<footer>
Body footer
</footer>
<p class="hover">hover me</p>
<article>
<h1>Article</h1>
<p>Paragraph 1</p>
<p>Paragraph 2</p>
<blockquote>Quote</blockquote>
<p>Paragraph 3</p>
<footer>Article footer</footer>
</article>
<footer>Body footer</footer>
</body>
</html>