-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercise-1.html
27 lines (27 loc) · 933 Bytes
/
exercise-1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Web Page</title>
</head>
<body style="background-color:lavender;">
<h1 style="background-color:lightskyblue;">My first website.</h1>
<h2 style="border-style:solid;boder-width:1px;">I hope you like it here.</h2>
<h3>I hope you like it here.</h3>
<h4>I hope you like it here.</h4>
<h5>I hope you like it here.</h5>
<h6>I hope you like it here.</h6>
<p style="color:red;">This is my paragraph.</p><br>
<p>This is another paragraph.</p>
<b>Bold text</b>
<i>Italic text</i>
<u>underlined text</u>
<em>Emphasized text</em>
<strong>Strong text</strong>
<sub>Subscript text</sub>
<sub>Subscript text</sub>
<img src="https://www.cuc.edu.cn/_upload/site/00/05/5/logo.png">
<a href="https://www.cuc.edu.cn" target="_blank">Click to the CUC website.</a>
<img src="img/campus.webp" style="width:300px;height:200px;">
</body>
</html>