Logo MART 341 Intro-Web-Dev
  • Modules
    • Week 1
    • Week 2
    • Week 3
    • Week 4
    • Week 5
    • Week 6
    • Week 7
    • Week 8
    • Week 9
    • Week 10
    • Week 11
    • Week 12
    • Week 13
    • Week 14
  • FAQ
  • About

Intro to HTML

Topic Overview

Browsers

Web Browsers Brief History of Browsers Browser Stats TODO

Document Object Model

Processing and the DOM Markup Languages Choosing and Using HTML TODO

Document Structure

The 4 Main Document Elements 1. Document Type 2. The Root Element 3. The Head Element 4. The Body Element Review: The 4 Main Document Elements TODO

Pages

The Index Page URLs Adding Content TODO

Developing With GitHub Pages

GitHub Pages Standard Directory Structure Rendering HTML Files Setting Up GitHub Pages TODO

1. Document Type

The document type element is the first element in an HTML document and should be placed on the first line. This element tells the browser’s processor what type of HTML document it is.

The <!DOCTYPE> declaration is not an HTML tag; it is an instruction to the web browser indicating the HTML page’s version.

HTML
<!DOCTYPE html>


html doctype document

  • ← Previous
  • Next →

MART 341 Intro-Web-Dev © 2022