Posts

Showing posts from January, 2015

Add Color to Header /Html

This source code is used add color to the header in html < !DOCTYPE   html > < html > < head > < style >   body {background-color:lightgray}   h1   {color:blue}   p    {color:green} < /style > < /head > < body >    < h1 > This is a heading < /h1 >    < p > This is a paragraph. < /p > < /body > < /html > #HKQWRITES

How To create Paragraphs in /html

In this post you will get to know how you make paragraphs while making a Html page This Source Code shows how it is done <!DOCTYPE html> <html> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p>This is a paragraph.</p> </body> </html>