-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03.headings.html
More file actions
33 lines (25 loc) · 766 Bytes
/
03.headings.html
File metadata and controls
33 lines (25 loc) · 766 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>My Page Title</title>
<meta charset="UTF-8">
<!-- The HTML <head> element has nothing to do with HTML headings.
The <head> element is a container for metadata. HTML metadata is data about the HTML document. Metadata is not displayed.
The <head> element is placed between the <html> tag and the <body> tag -->
</head>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>
<h1 style="font-size:60px;">New Heading</h1>
<!-- I can change the size of heading using style attribute -->
</p>
<hr>
<!-- hr=horizontal rule used to seperate contents(or define a change). It's like thematic break -->
<p>This is some text.</p>
</body>
</html>