Introduction
to HTML
BY ZEENAT DESHMUKH
T YBCA DIV:B
PRN: 220105011417
What is HTML?
• HTML stands for HyperText Markup Language.
• It is the standard language used to create and design
web pages.
• It structures web content with a set of tags and
attributes.
• Every webpage on the internet is built using HTML.
Basic Structure of an HTML
Document
• An HTML document contains:
1.<!DOCTYPE.html> : Declaration defining the document
type.
2.<html> : The root element containing all content.
3.<head> : Contains meta information (e.g., title, links to
CSS).
4.<body> : Contains the visible content of the webpage.
Commom HTML Tags
• Headings: <h1>, <h2>, <h3>,……<h6>.
• Paragraph: <p>
• Links: <a href=“url”>Link Text</a>
• Images: <img src=“image.jpg” alt=“Image Description”>
• Lists:
1. Unordered List: <ul><li>Item</li></ul>
2. Ordered List: <ol><li>Item</li></ol>
HTML Attributes
• Attributes provide additional information
about elements.
• They are added within the opening tag of an
element.
Key Attributes
• href for links.
• src for images.
• alt for image descriptions.
• Example :
• HTML is the foundation of all
Conclusion web development.
• It provides the structure and
layout of web pages.
• Mastering HTML is the first step
toward becoming a web
developer.
Thank You!