0% found this document useful (0 votes)
5 views9 pages

Introduction To HTML

HTML, or HyperText Markup Language, is the standard language for creating and designing web pages, using a set of tags and attributes to structure content. An HTML document includes elements like <!DOCTYPE>, <html>, <head>, and <body>, along with common tags for headings, paragraphs, links, images, and lists. Understanding HTML is essential for web development as it lays the foundation for building web pages.

Uploaded by

zdeshmukh26
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views9 pages

Introduction To HTML

HTML, or HyperText Markup Language, is the standard language for creating and designing web pages, using a set of tags and attributes to structure content. An HTML document includes elements like <!DOCTYPE>, <html>, <head>, and <body>, along with common tags for headings, paragraphs, links, images, and lists. Understanding HTML is essential for web development as it lays the foundation for building web pages.

Uploaded by

zdeshmukh26
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

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!

You might also like