Practice HTML Heading Tags
Practice HTML Heading Tags
Steps:
1) First create a basic structure for the HTML webpage.
<!doctype html>
<html>
<head>
</head>
<body>
</body>
</html>
2) Inside the body tag, add the below headings using the heading tags <h1> to
<h6>
a) Start with heading tag h1 and display text “The Brown Bear”.
b) Now, below the <h1> tag, use heading tag h2 to display “About Brown
Bears”
c) Below the <h2> tag, add <h3> heading that says “Species”.
d) After that add another <h3> tag that prints “Features”.
e) Below the <h3> heading that says “Features”, add an <h2> heading
that says “habitat”.
f) Next add an <h3> heading that says “Countries with large brown bear
populations.”
g) Finally on the next line add an <h2>heading that says “Media”.
h) Save your file. Go the location where the html file is saved and open
it in browser (Chrome).