-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_HTML_1.html
More file actions
40 lines (31 loc) · 876 Bytes
/
Basic_HTML_1.html
File metadata and controls
40 lines (31 loc) · 876 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
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<title>This is the tab title</title>
<meta charset="utf-8">
</head>
<body>
<p>Hello, world! I hope you are doing well!</p>
<p>
<b>Today</b> is a <u>great</u> <i>day</i>!
</p>
<p>
<font face="Arial" size="2" color="blue">
This paragraph uses Arial, size 2, blue color name.
</font>
</p>
<p>
<font face="Courier New" size="4" color="#FF5733">
This paragraph uses Courier New, size 4, and hex color.
</font>
</p>
<p>
<font face="Verdana" size="6" color="green">
This paragraph uses Verdana, size 6, green color.
</font>
</p>
<img src="https://www.ifaw.org/ca-en/journal/are-giraffes-endangered"
alt="Giraffe Image">
<script src="Basic_JavaScript_1.js"></script>
</body>
</html>