-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample-2.html
33 lines (20 loc) · 861 Bytes
/
Example-2.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
<! Anything between these angular bracket is commented out and will therefore be not displayed on the webpage>
<! HTML stand for : Hyper text markup language>
<! Step 1: Add a line as content in an html file and open it in your browser>
<! I am using chrome>
<! Step 2: Change the header from file name to something else>
<! Step 3: Introduce various header types>
<html>
<head>
<title>First Webpage</title>
</head>
<body>
<h1> ----------LEARN HEADER STYLE--------------------</h1>
<h1>My first HTML page!!</h1>
<h2> Ask a question about H2 tag </h2>
<h3> Ask a question about H3 tag </h3>
<h4> Ask a question about H4 tag </h4>
<h5> Ask a question about H5 tag </h5>
<h6> Ask a question about H6 tag </h6>
</body>
</html>