Posts

Showing posts from January 29, 2019

Simple and easy pragraph code

......

This is a paragraph This is second line <!Doctype html> <head> <title> Simple pragraph</title> </head> <body> <heading> Simple and easy paragrph code </heading> </br> <p>Line paragraph code </p> </body> </html> 

Html Multiple heading font color

Image
 Hhtml (hyper text markup language  heading is 6 type  <!Doctype html>   <html> <head> <title> Html Multiple heading font color </title> </head> <body> <H1> <font size="" color="Green">  First heading color </h1> </br> <h2> <font size="" color="red"> secont heading color is red </h2> </br> <h3> <font size="7" color="blue"> Heading third color is blue </h3> </br> <h4> <font size="8" color="grey"> Heading fourth color is grey </h4> </body> </html>