-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial_1.html
31 lines (29 loc) · 1.04 KB
/
tutorial_1.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
<!DOCTYPE html>
<html>
<head>
<title>My First website</title>
<!--Name of Website-->
</head>
<body>
<!--Detail in Website-->
<h1>This is an h1 heading</h1>
<h2>This is an h2 heading</h2>
<h3>This is an h3 heading</h3>
<h4>This is an h4 heading</h4>
<h5>This is an h5 heading</h5>
<h6>This is an h6 heading</h6>
<hr>
<br>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Reprehenderit nam officia repellat fugit enim nulla doloremque, amet provident quisquam fuga ex maxime debitis itaque eaque at. Labore neque magni ullam.\
</p>
<hr>
<pre>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Deserunt asperiores eius, nostrum labore perspiciatis totam magnam?
Officiis, amet vel? Error ipsum est repellat laborum at architecto,
quia qui eaque sequi!
</pre>
<!--THIS IS COMMENT-->
</body>
</html>