Logo Intro-Web-Dev
  • Modules
    • Introduction

    • GIT Module
    • 01://Reopositories
    • 02://READMEs
    • 03://Pages
    • 04://GIT Website

    • HTML Module
    • 05://Markup
    • 06://Forms
    • 07://Media
    • 08://HTML Website

    • CSS Module
    • 09://Color
    • 10://Typography
    • 11://Positiong
    • 12://CSS Website
  • FAQ
  • About

“Markup”

Topic Overview

Comments in HTML

Leaving Messages and Notes in HTML Adding HTML Comments TODO

Attributes

Review: HTML Elements and Tags Adding Attributes Revisit the Root Improving Document Structure TODO

Declaring Doctype

Review: DOCTYPE In the Past In the Now TODO

Head Elements

Review: The Head Meta Viewport Title Link Style Review: Head Elements TODO

Body Elements

Review: The Body Structural Markup Semantic Markup TODO

Semantic Markup

Bold and Strong Italic and Emphasis Superscript and Subscript Quotes and Blockquotes Abbreviations and Acronyms Citations Definitions Addresses Insert and Delete Strikethrough TODO

Lists

List Types Ordered Unordered Definitions Nested Lists TODO

External Hyperlinks

Hyperlinks and Hypertext Creating a Link Setting the Target Links to Other Sites E-mail Links TODO

Proper and Polite Code

Nobody Likes Rude Code 1. Logical or Linear Ordering 2. Properly Nested Tags 3. Indented Elements TODO

Style

The style element allows for simple style definitions to be established in a single HTML page without having to link to external documents. This is another element we will not use for the first few weeks but will rely upon heavily after we start looking at CSS.

HTML
<!DOCTYPE html>
<html>
  <head>
    <!-- Other meta elements -->
    <style>
      body {background-color: snow}
      h1 {color: purple}
    </style>

  </head>

</html>

html elements head style

  • ← Previous
  • Next →

Intro-Web-Dev © 2025 | More at Media-Ed-Online