-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTUT2.html
35 lines (29 loc) · 1.1 KB
/
TUT2.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
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heading & pragraph</title>
</head>
<body>
<h1 class="abc">Shiva</h1>
<p>This is my first paragraph of heading H1</p>
<p>Lorem ipsum dolor sit.</p>
<!-- LOREM IS USED TO GENERATE DUMY TEXT -->
<p>First Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nobis iusto sapiente iure, aliquid vero repellat nulla? Quas perferendis vero facilis doloribus nostrum tempora sunt inventore?</p>
<p>second</p>
<p>third</p>
<p>forth</p>
<!-- <strong>THIS TAG BOLDS THE TEXT</strong> -->
<p>Lorem ipsum dolor, sit amet <strong>THIS WILL BE BOLD</strong> consectetur adipisicing elit. Obcaecati, provident.</p>
<!-- <EM>THIS TAG WILL CHANGE THE FONT TO THE ITALIC FONT</EM> -->
<em>This will look like italic font</em>
<!-- TAG TO USE LINE BREAK = <BR></BR> -->
<p>Lorem ipsum
<br> dolor sit.</p>
<!--
TAG TO DRAW A LINE IN SITE -->
<hr>
</body>
</html>