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

Ordered

Ordered lists are those where each entry is prepend with an ascending identifier such as numbers, letters, or Roman numerals.

  1. Lather
  2. Rinse
  3. Repeat
  1. Lather
  2. Rinse
  3. Repeat
  1. Lather
  2. Rinse
  3. Repeat

To identify a list, the content must be surrounded by the ordered list tags. ( <ol>...</ol> )

Each “list item” must be surrounded by the list item tags. ( <li>...</li> ).

HTML
<ol>
  <li>List Item</li>
  <li>List Item</li>
  <li>Etc...</li>
</ol>


html list ordered

  • ← Previous
  • Next →

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