Saturday, 18 October 2014

Learn HTML online for beginners part 2

HTML Heading

Heading
Heading are defined with the <h1> to <h6> tag. this h tag change the size and style of heading

Paragraphs

 Paragraph are defined by <p> tag.
It starts with <p> tag and end with </p> tag.

Title

Title tags are use for insert title of the webpages. It is write in head tag Its starts like
<title>your title</title>

Example

<!DOCTYPE html>
<html>
<head>
<title>Learn Html and CSS online</title>
</head>
<body>
<h1>This is h1 heading</h1>
<h2>This is h2 heading</h2>
<h3>This is h3 heading</h3>
<h4>This is h4 heading</h4>
<h5>This is h5 heading</h5>
<h6>This is h6 heading</h6>
<p>Hello friends welcome to learncsshtmlonline.blogspot.com. In this blog learn html and css in simple ways </p>
</body>
</html>



Previous

No comments:

Post a Comment