Saturday 1 November 2014

Lesson no 4 = Text and Paragraphs in HTML

Text and Paragraphs in HTML

HTML-Text

Text is the backbone of any web page. It plays an double role; it provides content for web surfers to enjoy as they skim through articles and articles of information, but it also gives Search Engines and Spiders keywords and meta data. It is because of text on web pages that we have a network of seemingly endless information available at our fingers.


HTML Paragraphs

The HTML <p> element defines a paragraph.

<!DOCTYPE html>
<html>
<body>

<p>This is a paragraph 1.</p>
<p>This is a paragraph 2.</p>
<p>This is a paragraph 3.</p>

</body>
</html>


OutPut:

This is a paragraph 1.
This is a paragraph 2.
This is a paragraph 3.

0 comments:

Post a Comment