-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntroduction.html
More file actions
29 lines (28 loc) · 905 Bytes
/
Introduction.html
File metadata and controls
29 lines (28 loc) · 905 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>My first webpage</title>
</head>
<body>
<h1>Hello World</h1>
<h4>Im heading number four.<br> And i have use the br tag so that this comes on the next line.</h4>
<h5>These are my hobbies</h5>
<ul>
<li>Lazy Cating</li>
<li>Scrolling</li>
<li>Walking</li>
<li>Loving</li>
</ul>
<hr>
<h3>These are my goals</h3>
<ol type="a"> <!-- type is an attribute-name and a is a value assigned to that attribute-->
<li>To improve my spiritual life</li>
<li>To fall in love</li>
<li>To make my mummy happy</li>
<li>To make a lot of money</li>
<li>To attend weddings</li>
</ol>
<img src="Tree.jpg" alt="This is just a tree" >
</body>
<!-- this is a comment-->
</html>