Course Chapters

Course Chapters

Select a chapter to view short notes and quick revision points

1.Introduction to HTML

What is HTML History and Versions of HTML Uses of HTML Advantages and Limitations of HTML HTML File Extension (.html / .htm)

View Short Notes
2. Internet & WWW (HTML Context)

Internet World Wide Web (WWW) Website and Webpage URL Structure Web Browsers (Chrome, Firefox, Edge)

View Short Notes
3. HTML Editors

HTML Editors Notepad Notepad++ Sublime Text Visual Studio Code Creating, Saving, and Running HTML Files

View Short Notes
4. Basic Structure of HTML Document

<!DOCTYPE html> <html> <head> <title> <body> Explanation of basic HTML document structure

View Short Notes
5. HTML Tags & Attributes

HTML Tags Paired and Unpaired Tags HTML Attributes Global Attributes like id, class, title

View Short Notes
6. Head Section Elements

<title> tag <meta> tags charset description keywords viewport <link> <style> <script>

View Short Notes
7. Text Formatting Tags

<b>, <strong> <i>, <em> <u>, <mark> <small>, <big> <del>, <ins> <sup>, <sub> <pre> tag

View Short Notes
8. Headings & Paragraphs

Heading tags <h1> to <h6> Paragraph tag <p> Line break <br> Horizontal rule <hr>

View Short Notes
9. Div & Span Tags

<div> tag <span> tag Block elements Inline elements

View Short Notes
10. Hyperlinks (Anchor Tag)

Anchor tag <a> Internal links External links Email links Named anchors / Bookmarks

View Short Notes
11. Images in HTML

Image tag <img> src attribute alt attribute width and height Image formats

View Short Notes
12. Lists in HTML

Ordered list <ol> Unordered list <ul> Definition list <dl> <li>, <dt>, <dd> tags

View Short Notes
13. Tables in HTML

<table> tag <tr>, <th>, <td> border cellpadding cellspacing rowspan colspan

View Short Notes
14. Forms in HTML

<form> tag Form attributes <input> types text password email radio checkbox submit reset <textarea> <select> <option> <label>

View Short Notes
15. Frames & Iframes

<frameset> <frame> Nested frames <iframe> tag

View Short Notes
16. HTML5 Introduction

HTML5 features Differences between HTML and HTML5

View Short Notes
17. HTML5 Semantic Elements

<header> <nav> <section> <article> <aside> <footer>

View Short Notes
18. Audio & Video in HTML5

<audio> tag <video> tag <source> tag controls autoplay loop

View Short Notes
19. HTML5 Form Validation

required pattern minlength maxlength autofocus email number date range

View Short Notes
20. HTML Layout & Structure

HTML page layout Header Content Sidebar Footer Basic layout structure

View Short Notes
21. HTML Comments

HTML comment syntax <!-- comment --> Uses of HTML comments

View Short Notes