> Online tutorial : HTML Syntax
Showing posts with label HTML Syntax. Show all posts
Showing posts with label HTML Syntax. Show all posts

html header

Displaying Header
we are using header tags which helps to display the text as some header.The header tag is used by h1,h2,h3,h4,h5,h6
Example
<html>
<head>
<title>
HTML header
</title>
</head>
<body>
<h1>This is first header</h1>
<h2>This is second header</h2>
<h3>This is third header</h3>
<h4>This is forth header</h4>
<h5>This is fifth header</h5>
<h6>This is sixth header</h6>
</body>
</html>

Output

This is first header

This is second header

This is third header

This is forth header

This is fifth header
This is sixth header


HTML Syntax

HTML syntax
An HTML document consists of three parts
  • <html>
  • <head>section
  • <body>section
<html>
<head>
<title>
-------
</title>
</head>
<body>
--------
</body>
</html>