Posts

Showing posts with the label HTML

Basic website creating using table for beginners with code

<!Doctype html> <head> <title>Website</title> </head> <body> <center><h1>This is my first website</h1></center> <table width=100% border=1 cellpadding=”10″ cellspacing=”10″> <tr> <th width=20%>This is left side.</th> <th width=60% aligh=center><h2><a href=”http://www.ranjanbarman.org”>HOME</a> | <a href=”#”>Bikes</a> | <a href=”#”>Cares</a> | <a href=”#”>Dresses</a> | <a href=”#”>Photos</a></h2></th> <th width=20%>This is the right side.</th> </tr> <tr> <td></td> <td height=400> This is the place for your web content. </td> <td></td> </tr> <tr> <th> About Us </th> <th> Contact Us </th> <th> Copy rights@ </th> </tr> <tr> </table> </body> </html> Write the code into your notepad ...

Briefly discuss about HTML tags

HTML tags are used to perform various works in a webpage. To design and decorate an html page we need to use right html tags. Here we will learn about some popular html tags that have wide use. The main two section of a webpage are the head section and the body section. But both the head and body section of a webpage reside inside html tag. The Head and Body section : We start writing html code like below <!DOCTYPE html> <head> <title> Inside head tag we write title tag. Title tag displays the title/name of a page. </title> <meta name="" content="" /> <meta property="og:url" content="http://www.ranjanbarman.org/Briefly-discuss-about-HTML-tags.html" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Briefly discuss about HTML tags" /> <meta property="og:description" content="HTML tags are used...