- HTML stands for Hyper Text Markup Language.
- It is the base code for web pages.
- It creates a visual presentation that is displayed by a web browser.
<html> <head> <title> </title> </head> <body> </body> </html> |
- HTML
- Hyper Text Markup Language. Most all web pages are written in this code. Did I just say codeinstead of language? Yes! The L does happen to symbolize language, but it referes to the English language. The page is created by the code and the code is written in English. HTML itself is not a language.
- HEAD
- An introduction to the web page. In this area, some of the settings for the web page are introduced such as the TITLE, and information for search engines.
- TITLE
- The title for the web page. Every good page deserves a name. This name will appear in the title bar at the top of the browser window. It is also used as the file name if someone 'bookmarks' your page or saves it.
- BODY
- Main program section for web page. This is where it all happens.