-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
33 lines (33 loc) · 803 Bytes
/
index2.html
File metadata and controls
33 lines (33 loc) · 803 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>Learning HTML</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 -->
<!-- <a href="about.html"
</div>
<div>
<p>My <small>third</small> web page!</p>
<h1>J</h1>
<h2>J</h2>
<h3>J</h3>
<h4>J</h4>
</div>
<div>
<p>we like to:</p>
<ul> <!-- ul is unordered list, will create bullet points. if you want it to be numbered, do <ol> for ordered list.-->
<!-- <li>spam</li>
<li>draw</li>
<li>watch Emirichu</li> <!-- <br> puts a break between lines.-->
<!-- </ul>
<hr>
<img src="cats2.jpg"
width="500"
height="400">
</div>
</body>
</html> -->