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

2. The Root Element

The root element of an HTML document contains all other elements and text. Whereas the !DOCTYPE declares the document’s HTML version, the root defines all the HTML elements for that page. This element is necessary and placed outside of all content.

HTML
<!DOCTYPE html>
<html>

</html>

html document root

  • ← Previous
  • Next →

MART 341 Intro-Web-Dev © 2023