Using Headers Properly(Tutorial Contest)

rajat.payrajat.pay BeginnerLink Clerk
Headers in HTML and XHTML are tags used to define the headings within your page. There are six levels of headings, from <h1> . . . </h1> to <h6> . . .</h6>. The <h1> . . . </h1> level header is considered the most significant header, such as a page title, with an <h2> . . .</h2> level header performing as a subhead and so on. Headers at the fifth and sixth levels are rarely used, although you will find them occasionally in very complex documents.

<h1>Welcome to Webbrainiac</h1>
<h2>Html</h2>
<h3>PHP</h3>
<h4>Web Hosting </h4>

write this ::
<html>
<head>
<title> trail </title>
<head>
<body>
<h1>Welcome to Webbrainiac</h1>
<h2>Html</h2>
<h3>PHP</h3>
<h4>Web Hosting </h4>

</body>
</html>

and Check the result ..!!
Sign In or Register to comment.