
What is html ?
HTML (HyperText Markup Language) is the standard markup language used to create and structure content on the web. It provides the foundational building blocks for web pages by defining elements such as headings, paragraphs, links, images, and more.
Key Features of HTML:
Markup Language:
- HTML uses tags to structure content. These tags tell the browser how to display text, images, videos, and other elements.
Elements:
- HTML is composed of elements, which include an opening tag, content, and a closing tag.
- Example:
Attributes:
- Tags can have attributes that provide additional information about an element.
- Example:
Hyperlinks:
- HTML enables linking to other pages or resources using the <a> tag.
- Example:
Media Support:
- HTML supports embedding images, audio, and video directly into web pages.
- Examples:
Semantic Elements:
- Modern HTML introduces semantic tags that describe the purpose of content, improving accessibility and SEO.
- Examples: <header>, <footer>, <article>, <section>.
html
Copy code
<img src="image.jpg" alt="An image"> <audio controls> <source src="audio.mp3" type="audio/mpeg"> </audio> <video controls> <source src="video.mp4" type="video/mp4"> </video>
html
Copy code
<a href="https://www.example.com">Visit Example</a>
html
Copy code
<img src="image.jpg" alt="Description of image">
html
Copy code
<p>This is a paragraph.</p>