-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelloworld1.html
47 lines (42 loc) · 1.11 KB
/
helloworld1.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<h1>This is a big header</h1>
<h2>This is a big header</h2>
<h3>This is a big header</h3>
<h4>This is a big header</h4>
<h5>This is a big header</h5>
<h6>This is a big header</h6>
<hr>
<p>Here is some <b>Bold</b> text</p>
<p>Here is some more <strong>Strong</strong> text</p>
<p>Here is some more <i>italic</i> text <br>with a line break</p>
<hr>
<p>Here is some more <ins>underlined</ins> text <br>with a line break</p>
<p>Here is some more <sup>Superscript</sup> text</p>
<p>Here is some more <sub>Subscript</sub> text</p>
<p>Here is some more <del>Deleted</del> text</p>
<hr>
<ul>
<li><strong>Genson</strong></li>
<li><em>Ming</em></li>
<li><del>Jia</del></li>
<li><ins>Jian</ins></li>
</ul>
<hr>
<ol type="I">
<li><strong>Genson</strong></li>
<li><em>Ming</em></li>
<li><del>Jia</del></li>
<li><ins>Jian</ins></li>
</ol>
<hr>
<img src="deadpool.jpg">
<p>This is Deadpool</p>
<hr>
<img src="https://en.wikipedia.org/wiki/File:Weasel2.jpg">
<p>This is his friend Weasel</p>
</body>
</html>