-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity.html
More file actions
49 lines (45 loc) · 1.61 KB
/
activity.html
File metadata and controls
49 lines (45 loc) · 1.61 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
<!-- Create unordered List with 4 list items and 2 of the list items will have another 4 items. Add an image (external image) and create a link to google.com.
Headings is class activity and Name. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Activity</title>
</head>
<body>
<h1>Class Activity</h1>
<h1>Andy Hwang Sau Yee</h1>
<p>Create unordered List with 4 list items and 2 of the list items will have another 4 items.
Add an image (external image) and create a link to google.com.
Headings is class activity and Name.</p>
<!-- 1st Task: Unordered List -->
<ul>
<li>Item 1
<ul>
<li>Sub Item 1</li>
<li>Sub Item 2</li>
<li>Sub Item 3</li>
<li>Sub Item 4</li>
</ul>
</li>
<li>Item 2
<ul>
<li>Sub Item 1</li>
<li>Sub Item 2</li>
<li>Sub Item 3</li>
<li>Sub Item 4</li>
</ul>
</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<br>
<!-- 2nd Task: External Image -->
<img src="https://images.unsplash.com/photo-1652007555448-7675a1c34ace?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHx0b3BpYy1mZWVkfDIyfF9oYi1kbDRRLTRVfHxlbnwwfHx8fA%3D%3D&auto=format&fit=crop&w=500&q=60" alt="" width="300">
<br>
<!-- 3rd Task: Create Link to Google -->
<a href="https://www.google.com">Click here to Google</a>
</body>
</html>