0% found this document useful (0 votes)
7 views2 pages

HTML Notes 2

HTML is the standard markup language for creating web pages, using elements and tags to structure content. It includes common tags like <html>, <head>, <body>, and <p>, and features such as multimedia support and compatibility with CSS and JavaScript. HTML serves as the foundation of web development, enabling the creation of interactive and visually appealing websites.

Uploaded by

shubhammogiya289
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)
7 views2 pages

HTML Notes 2

HTML is the standard markup language for creating web pages, using elements and tags to structure content. It includes common tags like <html>, <head>, <body>, and <p>, and features such as multimedia support and compatibility with CSS and JavaScript. HTML serves as the foundation of web development, enabling the creation of interactive and visually appealing websites.

Uploaded by

shubhammogiya289
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

HTML (HyperText Markup Language)

Introduction:

HTML is the standard markup language used to create web pages. It structures content on the web
using elements and tags.

Basic Structure of HTML:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

Common HTML Tags:

• <html> - Root element

• <head> - Contains meta information

• <title> - Sets page title

• <body> - Contains visible content

• <h1> to <h6> - Headings

• <p> - Paragraph

• <a> - Hyperlink

• <img> - Image

• <ul>, <ol>, <li> - Lists

• <table>, <tr>, <td> - Tables

• <form> - Form for user input

Features of HTML:
• Simple and easy to learn

• Platform independent

• Supports multimedia (images, audio, video)

• Works with CSS and JavaScript

• Supported by all modern browsers

Conclusion:

HTML is the foundation of web development. It is used to structure web pages and works together
with CSS and JavaScript to create interactive and attractive websites.

You might also like