Skip to content

unseenumair/html

Repository files navigation

HTML Logo HTML Learning Repository

Welcome to the HTML Learning Repository.
This repository contains my personal notes, experiments, and code examples as I systematically learn and explore HTML fundamentals.

The goal is clarity over noise:

  • ✅ Beginner-friendly explanations
  • ✅ Practical, runnable examples
  • ✅ Clean structure for long-term reference

Whether you’re starting from zero or revisiting core concepts, this repo is designed to be fast to read and easy to reason about.


🎯 What’s Inside?

This repository focuses on learning HTML through hands-on examples and important conceptual notes.

📂 Topics Covered

  1. Basic HTML Structure

    • Core document anatomy: <!DOCTYPE html>, <html>, <head>, <body>
  2. HTML Elements and Tags

    • Common building blocks:
      <h1><h6>, <p>, <a>, <img>, <div>, <span>
  3. Lists

    • Ordered (<ol>), unordered (<ul>), and definition lists (<dl>)
  4. Forms and Input Elements

    • Interactive UI with <form>, <input>, <textarea>, <select>, <button>
  5. Tables

    • Structured data using <table>, <tr>, <th>, <td>
  6. Semantic HTML

    • Meaningful structure with <header>, <footer>, <section>, <article>, <nav>
  7. Multimedia

    • Images, audio, and video via <img>, <audio>, <video>
  8. HTML Attributes

    • Global and custom attributes: class, id, style, data-*
  9. HTML5 Features

    • Modern elements: <canvas>, <svg>, <details>, <summary>
  10. Accessibility

    • Accessible markup using semantic HTML, alt text, and ARIA roles