-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
33 lines (33 loc) · 756 Bytes
/
about.html
File metadata and controls
33 lines (33 loc) · 756 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
30
31
32
33
<!-- <!DOCTYPE html>
<html>
<head>
<title>About</title>
</head>
<body>
<div>
<h1>Welcome to <strong>Justine's Spot!</strong></h1>
<p>Hai, <em>bored people!</em></p>
<!-- <em> means EMPHASIS, like italicising -->
</div>
<div>
<p>My <small>about</small> web page!</p>
<!-- <h1>J</h1>
<h2>J</h2>
<h3>J</h3>
<h4>J</h4> -->
</div>
<div>
<p>I am:</p>
<ul> <!-- ul is unordered list, will create bullet points. if you want it to be numbered, do <ol> for ordered list.-->
<li>Justine</li>
<li>13</li>
<li>self-centred</li> <!-- <br> puts a break between lines.-->
</ul>
<hr>
<img src="cats2.jpg"
width="500"
height="400">
</div>
</body>
</html>
-->