What is HTML?

html

Elements

Elements identify the different parts of your HTML document. The four required elements in every HTML file are: Html, head, title, & body.

HTML Tag

The first tag in your HTML document is <html>. This tag tells your browser that this is the start of an HTML document. The last tag in your document is </html>. This tag tells your browser that this is the end of the HTML document.

Head Tag

The text between the <head> tag and the </head> tag is header information. Header information is not displayed in the browser window.

Title Tag

The text between the <title> tags is the title of your document. The title is displayed in your browser's caption.

title tag

Body Tag

The text between the <body> tags is the text that will be displayed in your browser.


Tags

HTML markup tags are usually called HTML tags


Saving as a Web Page

Add the .html file extension to save a file as a web page

Review Questions

  1. What is the first and last tag in an HTML document?
  2. What is the title of www.whas11.com?
  3. Information that is not displayed in the browser would placed in which HTML tag?
  4. Every html tag has an opening tag and a ________ tag.
  5. Give an example of an opening & closing tag.
  6. Where would you place the title tag in your HTML file? Would it go in the head tag or the body tag?
  7. When using notepad, how would you save your html file as a web page?
Go to the Top of the Page