HTML | Where to begin?

19 Jan 2013

After you have a basic idea about the HTML language and how to test it, you can move towards simple tags for adding images, tables, frames etc.The best place to start learning is from www.w3schools.com . It is the best online site where you can learn Web languages..

image

It is very easy to follow and have option to test your html tags. The site is specifically for all web development. You will find all the tags listed there for reference.Start with simple tags like adding image files,hyper links,and then to tables to frames.Here is a simple example covering some basic tags

 <html>  
   <title>Eionix Media </title>  
   <head></head>  
   <body>  
       
     <center><h1> This is a heading </h1></center>  
       
     </br>  
      
     <center><img src="https://www.google.com/images/srpr/logo3w.png"/></center> 
      
     <p>Here starts a paragraph.</br> 
      
     This part is called body. Whatever content you like to add in your webpage resides in the body tag. 
     </br></br> 
      
     <font color ="blue" size=6px> 
     You can provide color, font type and size using this tag. But styling using html tag is not preferred. Because we use CSS for that purpose  
     </font> 
      
     </br></br></br></br> 
      
     <table width="250 px" height="50 px" border="1" align="center"> 
      
     <tr> 
     <td>row 1</td> 
     <td>row 2</td> 
     </tr> 
      
     </table> 
      
     </br> 
     </br> 
      
     <center> 
      
     Form </br></br> 
      
     <form name="form1" method="get" action="http:\\www.google.com\"> 
        
              <input type="text" name="q"/> 
       Search <input type="submit" name="search"/> 
      
     </form> 
      
     </center> 
      
     </p> 
   </body> 
 </html>




Comments