Posts

Showing posts with the label html coding. Source code of html html in full details

html basic tag part two 20+ | html coding tag |

Image
Some tags shows in last post vist plz  __________________________________________ Q tag  : <!DOCTYPE html> <html> <head>   <title>Quotation</title> </head> <body>   He said <q>This is too much.</q> </body> </html> Output  __________________________________________ Address tag  <!DOCTYPE html> <html> <head>   <title>Address</title> </head> <body>   My Address is.   <Address>     Ramesh,<br> Kozicode,<br> Chennai,<br> Pin-629167,<br> K.K.Dist.   </Address> </body> </html> Output __________________________________________ City tag <!DOCTYPE html> <html> <head>   <title>cite</title> </head> <body>   This article is written by Merbin Joe and from <cite>Mulagumoodu</cite>. </body> </html> Output _______________________