-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_HTML_3.html
More file actions
32 lines (18 loc) · 788 Bytes
/
Copy pathBasic_HTML_3.html
File metadata and controls
32 lines (18 loc) · 788 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Basic HTML and CSS Assignment</title>
<meta charset="utf-8">
</head>
<body>
<div style="color: blue">
<h2>History of Zebra</h2>
<p>Zebras are African equids that diverged from other horse ancestors about 2 to 4 million years ago,
originating from a North American ancestor (Hyracotherium) before migrating. </p>
</div>
<p>They evolved distinct black-and-white stripes for thermoregulation, predator confusion, and protection against biting flies.</p>
<p><font color="green">There are three distinct species—Plains, Mountain, and Grévy's—found in Eastern and Southern Africa.</font></p>
<link rel="stylesheet" type="text/css" href="Basic_CSS_1.css">
<p>Added another paragraph</p>
</body>
</html>