Basic HTML Tutorial | ||
[Home] [Java] [HTML] [Tabs] [About Me] [Disclaimer] [All Downloads] [Contact] | ||
What is HTML ? HTML stands for Hyper Text Markup Language . It is the the used to create Web Sites & web pages . It has the ability to integrate text , images , sounds , links etc . HTML files are plain text ( ASCII ) files that can be created using any text editor ( eg , Notepad in Windows ) .
Saving your files ... Since HTML files are not targeted at particular platforms they need to be stored in standard ASCII ( text ) format . To save your file in this format you'll need to use notepad ( Windows ) or some other text editor on your OS . you can also use word processors like Word . Note -
Tags ! Say you want your text to appear in a certain manner inside a browser & in a certain font , etc . How do you tell the browser that you want blood to be RED in color , war to be BOLD , large to to Large etc ? Simple , you put the text in between tags that tells the browser the way it should appear . For eg , <font size="6"> Large </font> = Large Tags can further have attributes that signal to the browser even more detail about the way it should inerpret the enclosing data . For eg , <font size="6" font color="#008000"> green </font> = green The tags have been italicized . As you can see , HTML tags comprise of a left angle bracket ( < ) , a tag name ( optionally followed by attributes ) & a right angle bracket ( > ) . Generally tags are paired to signal the start & end of instruction . The end tag is essentially the same as the start tag except that the text within the brackets in the end tag is preceded by a slash ( / ) . Note -
A Minimal HTML page Given below is a very elementary HTML page ( tags have been italicized ) . <html> The essential tags ( can't do without one's ) are <html> , <head> , <title> & <body> ( don't forget their corresponding end tags) . Note -
|
||
[Home] [Java] [HTML] [Tabs] [About Me] [Disclaimer] [All Downloads] [Contact] |