Chapter 3
Basic:
HTML Headings
HTML headings are defined with the <h1> to <h6> tags.
Example:1
<html>
<body>
<h1>ATOZ4TUTORIALS </h1>
<h2>ATOZ4TUTORIALS </h2>
<h3>ATOZ4TUTORIALS</h3>
<h4>ATOZ4TUTORIALS</h4>
<h5>ATOZ4TUTORIALS</h5>
<h6>ATOZ4TUTORIALS</h6>
</body>
</html>
Output is:
ATOZ4TUTORIALS
ATOZ4TUTORIALS
ATOZ4TUTORIALS
ATOZ4TUTORIALS
ATOZ4TUTORIALS
ATOZ4TUTORIALS
Example:2
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
Output is:
No comments:
Post a Comment