Corban Seal

Step 4

HTML Basics

HTML Sandwich

  1. doctype
  2. html
  3. head
  4. body

The HTML Sandwich Structure

  1. Flag in top of sandwich; begins with Doctype HTML <!doctype html>
  2. Top bun of sandwich; begins the <html>
  3. Head portion / Meta data <head></head> This is known as simply metadata.
  4. Fillings of sandwich; Body, which is what is visible on the page <body></body>
  5. Bottom bun of sandwich; ends with </html>

Tags

It is constructed via a set of tags. Tags are used to delimit the start and end of elements in the markup. These can reference structure, or elements such as type.

Some HTML History

Creating Links

  1. Highlight word or image
  2. Click on drag-down menu Insert and choose hyperlink
  3. Confirm the correct text or image is chosen in first line

<a href="http://svsu.edu/"> Learn about SVSU </a>

Index Page

We commonly refer to this as the home page, but to function properly it should be coded as index.html. Browsers automatically recognize that as the home page. Never save your home page as home.html. You will have to use special code for a browser to recognize it as the home page and it might not work with all browsers.