Skip to main content

Posts

Showing posts from April 8, 2014

Html Practical

<html> <head> <title> blog </title> <!--Title is used to identify the contents of a document.It defines a title in the browser--> <base href="http://solvedprograms.blogspot.in" target="_self"> <!-- Base specifies a default url & a default target for all links on a page --> <meta name="keywords" content="html,xml"> <!--The meta element specifies a property and assign a value to it.Mainly used for seo--> <link rel="stylesheet" type="text/css" href="a.css"/> <!--It is used to link other documents to the webpage--> <style type="text\css"> H1{font-size:72px} </style> <!--IT is used to set style of a document--> <script language="javascript"> </script> </head> <body background="" bgcolor="gray" leftmargin="100" topmargin="100&quo