Introduction to Web Design



1. Introduction - You are here. 

2. HTML - An introduction to the computer language which forms the heart of web pages. Although it's not absolutely necessary to know this stuff, you should still read this page to get an idea of how it works. 

3. Editors - Tools you can use to help create websites.

 4. Hosting - How to find a home (host server) for your website. 

5. Publish! - How to upload your site to the internet so that other people can visit it.

Source code :

 <HTML>  
 <HEAD>  
 <TITLE> MY BIO-DATA FORM </TITLE>  
 </HEAD>  
 <BODY BGCOLOR="ORANGE">  
 <FONT FACE="Courier New">  
 <H1 ALIGN="CENTER">FORM</H1>  
 <FORM>  
 <H3>Type The Password : <INPUT TYPE="TEXT" NAME="T1"><br><br>  
 Employee Code : <INPUT TYPE="TEXT" NAME="T2">  
 Employee Name : <INPUT TYPE="TEXT" NAME="T3"><br><br>  
 City : <INPUT TYPE="TEXT" NAME="T4"><br><br>  
 Benifits <INPUT TYPE="checkbox" NAME="c1" checked>  
 Daily <INPUT TYPE="checkbox" NAME="c2" ><BR><BR>  
 Department:<BR>  
 <SELECT NAME="S2" SIZE=4 MULTIPLE>  
 <OPTION>Sales  
 <OPTION>Accts.  
 <OPTION>Mkt.  
 <OPTION>HRD.  
 <OPTION>ADV.  
 </SELECT><BR><BR>  
 Grade <INPUT TYPE="RADIO" NAME="RADIO"> A  
 6  
 <INPUT TYPE="RADIO" NAME="RADIO"> B<BR><BR>  
 <INPUT TYPE="BUTTON" NAME="B1" VALUE=" OK " SIZE=8 ALIGN="CENTER">  
 </H3></FORM>  
 </FONT>  
 </BODY>  
 </HTML>  

Output for above source code :



Post a Comment

0 Comments