lists: ordered and unordered * Ordered lists use numbers while unordered lists use bullets
Unordered Lists --------------- * Denoted using `
` tag * Each list item is denoted using `
` tag Example: ```bash
o First item
o Second item
``` Ordered Lists ------------- * Denoted using `
` tag * Each list item is denoted using `
3. ` tag Example: ```vbnet
1. First item
2. Second item
``` Nested Lists ------------ * Possible to nest one list inside another * Useful for creating hierarchical
structures HTML Tables and Forms -------------------- * Understanding HTML tables and forms is crucial
for data organization * These topics will not be covered in this set of notes HTML Basics ----------- *
HTML (Hypertext Markup Language) is a markup language used for creating web pages * Provides
structure and meaning to text Full Stack Web Development -------------------------- * Building a full stack
web development project with HTML, CSS, and JavaScript * Requires knowledge of multiple
technologies and programming languages * Builds on basics covered in this set of notes Form Data
Collection -------------------- * Using HTML input types and attributes for form data collection * Allows
for user interaction and input * Important for user-centered web development Semantic Elements
----------------- * Organizing content with HTML semantic elements and structure * Provides meaning
to content * Improves accessibility and SEO Integrating HTML ---------------- * Integrating HTML with
other programming languages and technologies * Allows for dynamic web development and
enhanced user experience * Expands capabilities of HTML on the web.