HTML FULL COURSE – BASIC ENGLISH NOTES
1. What is HTML?
HTML stands for HyperText Markup Language. It is used to create web pages. HTML is not a
programming language. It uses tags to structure content.
2. HTML Basic Structure
Every HTML page contains DOCTYPE, html, head, title, and body tags.
3. HTML Tags
Tags are keywords enclosed in angle brackets. Some tags have opening and closing tags.
4. Headings
HTML provides six headings from h1 (largest) to h6 (smallest).
5. Paragraph and Formatting
Paragraph tag is used to write text. Formatting tags include bold, italic, underline.
6. Lists
Ordered lists use numbers. Unordered lists use bullets.
7. Links and Images
Anchor tag is used for links. Image tag is used to display images.
8. Tables
Tables are used to display data in rows and columns using table, tr, th, and td tags.
9. Forms
Forms are used to collect user input using input fields like text, email, password.
10. Meta Tags
Meta tags provide information about the webpage. They are placed in the head section and are not
visible.
11. Div and Span
Div is a block-level element. Span is an inline element.
12. Advantages of HTML
HTML is easy to learn, free, and supported by all browsers.
13. Limitations of HTML
HTML cannot create logic and needs CSS and JavaScript for styling and functionality.
14. Conclusion
HTML is the foundation of web development. Learning HTML makes learning other technologies
easy.