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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Empty Project</title>
<script src="code.js" type="text/javascript" charset="utf-8"></script>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>This is my big H1 heading</h1>
<h3>This is my smaller H3 heading <h3></h3> `<p>My <b>first web page</b> written in <u>HTML</u></p>
<p>Website<i> design</i> is<b> easy </b> </p>
<p><u>This </u> lesson<b> is fun </b></p>
<ul>
<li>Captain America</li>
<li>Thor</li>
<li>Iron Man</li>
<li>Hulk</li>
<li>Hawk Eye</li>
</ul>
<ol>
<li>Pop </li>
<li>Rock</li>
<li>Indie </li>
<li>Dance</li>
<li>Country</li>
</ol>
<img src="image/deadpool.jpg" width="150" height="150" alt="picture of a happy smile"/>
</body>
</html>