-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML LearningModule2.html
More file actions
62 lines (53 loc) · 1.45 KB
/
HTML LearningModule2.html
File metadata and controls
62 lines (53 loc) · 1.45 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
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
</head>
<body>
<p>
Ordered list without a start point
</p>
<ol>
<li>Lights</li>
<li>Camera</li>
<li>Action</li>
</ol>
<p>
Ordered list with a start point
</p>
<ol start="5">
<li>Lights</li>
<li>Camera</li>
<li>Action</li>
</ol>
<p>
Ordered list reversed
</p>
<ol reversed>
<li>Lights</li>
<li>Camera</li>
<li>Action</li>
</ol>
<p id="para1">Paragraph 1 wants to be in red</p>
<p id="para2">Paragraph 2 wants to be in blue</p>
<p id="poem1" class="poetry">To move, to breathe, to fly, to float...</p>
<p id="poem2" class="poetry">Roses are red, violets are blue...</p>
<figure>
<img src="img_cast.jpg" alt="The Importance of Being Earnest Cast">
<figcaption>Fig1. - The cast hard at work at dress rehearsal before opening night</figcaption>
</figure>
<h4>Lane: </h4>
<p>Yes sir. [<mark>Handing his master the sandwiches on a salver</mark>]</p>
<details>
<summary>Cast Members</summary>
<p>George Washington as Algernon Moncrieff</p>
<p>Ronald Reagan as John Worthing</p>
</details>
<abbr title="Hypertext Markup Language">HTML</abbr>
<address>
<a href="www.example.com">John Doe</a><br>
#123, Doe Villa<br>
Los Angeles, USA
</address>
</body>
</html>