-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic.html
More file actions
35 lines (27 loc) · 1.16 KB
/
Basic.html
File metadata and controls
35 lines (27 loc) · 1.16 KB
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>
<head>
<title>Basic Of HTML 5</title>
</head>
<body>
<!--Comment In HTML 5-->
<!--This is the Syntax of HTML-->
<!-- Heading h1 to h6 tag-->
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<!--Horizontal Line In HTML-->
<hr>
<!--Paragraph p Tag-->
<p>This is p tag.</p>
<!--Blank line using <br> tag-->
<p>This is another p tag. Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis recusandae expedita, possimus consequatur iste eius ducimus rem saepe at <br> veritatis labore voluptate quae! Dignissimos earum repellat saepe est,
esse qui! Nulla cupiditate magni
doloribus, fugit aliquam repudiandae alias itaque qui animi. Quia quae molestiae accusamus laboriosam rerum voluptatem quas alias?</p>
<!--Pre tag-->
<pre>This is first line. This is second line. This is third line.</pre>
</body>
</html>