jeevan

google logogoogle logogoogle logogoogle logogoogle logogoogle logogoogle logo

Web Design

HTML
the  mening of html -Hyper Text Markup Language
html i கண்டுபிடித்தவர் tim berners-lee
tools for html

  • Notepad
  • Paint bress
  • Photoshop
  • frontpage
  • firefox or chrome etc  
 Open notepad  and type
    <html>
   <head>
   <title>write some thing(its a tap title)</title>
   </head>
    <body>

       Write some thing
   </body>
   </html>
and save index.html

 and open the file
---------------------Try This--------------------   
HeadingTag
<h1>heading</h1>
<h2>heading</h2>
<h3>heading</h3> 
<h4>heading</h4>  
<h5>heading</h5>
<b>bold</b>-எழுத்தை பெரிதாக்க உதவும்
<i>italic</i> -எழுத்தை சரித்தெழுத உதவும்
<big> hello</big>
<small>hi</small>
<font colour="blue"> jeevan</font>or <font size="5" face="arial" color="red"> jeevan</font>

<p></p> -paragraph
<a href="http://www.jeevasri.blogspot.com">Write Some Thing</a> -link
<a href="http://www.jeevasri.blogspot.com" target="_blank">Write Some Thing</a> -link open in new tap 
<img src="something.jpg" width="104" height="142" />-it's for image link
<br /> -அடுத்த line ill எழுத உதவும்
<hr />-கோடிட உதவும்
(-moz-border-radius:5px;)ஒரு box  இன் 4 மூலைகளை வளைக்க  உதவும்
style-----
<html>(try it)
<body style="background-color:yellow;">
<h2 style="background-color:red;">This is a heading</h2>
<p style="background-color:green;">This is a paragraph.</p>
</body>
</html>
table-----
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>