-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathL5-demo-code.html
More file actions
46 lines (38 loc) · 1.51 KB
/
L5-demo-code.html
File metadata and controls
46 lines (38 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>L5 Demo</title>
</head>
<body>
<main>
<h1 style = "text-align: center;">This is the most important heading, centered with the style attribute</h1>
<h2>This is the second most important heading</h2>
<h3>This is the third most important heading</h3>
<h4>This is the fourth most important heading</h4>
<h5>This is the fifth most important heading</h5>
<h6>This is the least important heading</h6>
<br>
<p>This is a paragraph. <a href = "https://www.w3schools.com/html/html_basic.asp">Here is a link to Html Basics</a></p>
<ul>
<li>This is an unordered list item</li>
<li>It uses bullet points</li>
<ol>
<li>This is an ordered list inside an unordered list</li>
<li>It is numbered</li>
</ol>
</ul>
<div class="text" id="paragraph">
<p>This is a paragraph inside a div.</p>
</div>
<figure>
<img src = "https://www.wpkube.com/wp-content/uploads/2017/09/html-chatsheet.jpg" alt = "Ultimate Html5 Cheatsheet" width = 200 height = 400>
<figcaption>This is an Html5 cheatsheet. This caption is generated using the figcaption tag.</figcaption>
</figure>
</main>
<footer>
©Copyright July Wu 2025.
</footer>
</body>
</html>