HTML & Web Design – SSWebTecIO
HTML & Web Design
Learn HTML from basics to advanced including tags, forms, tables, media, layouts, and building complete structured web pages.

Chapters

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)
2. Internet & WWW (HTML Context)
Internet
World Wide Web (WWW)
Website and Webpage
URL Structure
Web Browsers (Chrome, Firefox, Edge)
3. HTML Editors
HTML Editors
Notepad
Notepad++
Sublime Text
Visual Studio Code
Creating, Saving, and Running HTML Files
4. Basic Structure of HTML Document
<!DOCTYPE html>
<html>
<head>
<title>
<body>
Explanation of basic HTML document structure
5. HTML Tags & Attributes
HTML Tags
Paired and Unpaired Tags
HTML Attributes
Global Attributes like id, class, title
6. Head Section Elements
<title> tag
<meta> tags
charset
description
keywords
viewport
<link>
<style>
<script>
7. Text Formatting Tags
<b>, <strong>
<i>, <em>
<u>, <mark>
<small>, <big>
<del>, <ins>
<sup>, <sub>
<pre> tag
8. Headings & Paragraphs
Heading tags <h1> to <h6>
Paragraph tag <p>
Line break <br>
Horizontal rule <hr>
9. Div & Span Tags
<div> tag
<span> tag
Block elements
Inline elements
10. Hyperlinks (Anchor Tag)
Anchor tag <a>
Internal links
External links
Email links
Named anchors / Bookmarks
11. Images in HTML
Image tag <img>
src attribute
alt attribute
width and height
Image formats
12. Lists in HTML
Ordered list <ol>
Unordered list <ul>
Definition list <dl>
<li>, <dt>, <dd> tags
13. Tables in HTML
<table> tag
<tr>, <th>, <td>
border
cellpadding
cellspacing
rowspan
colspan
14. Forms in HTML
<form> tag
Form attributes
<input> types
text
password
email
radio
checkbox
submit
reset
<textarea>
<select>
<option>
<label>
15. Frames & Iframes
<frameset>
<frame>
Nested frames
<iframe> tag
16. HTML5 Introduction
HTML5 features
Differences between HTML and HTML5
17. HTML5 Semantic Elements
<header>
<nav>
<section>
<article>
<aside>
<footer>
18. Audio & Video in HTML5
<audio> tag
<video> tag
<source> tag
controls
autoplay
loop
19. HTML5 Form Validation
required
pattern
minlength
maxlength
autofocus
email
number
date
range
20. HTML Layout & Structure
HTML page layout
Header
Content
Sidebar
Footer
Basic layout structure
21. HTML Comments
HTML comment syntax
<!-- comment -->
Uses of HTML comments