CH 7
CH 7
CH 7
CHAPTER – VII
OBSERVATIONS
1) What is HTML?
HTML stands for HyperText Markup Language. It is the standard markup language
used to create the structure and content of web pages.
2) What are HTML elements?
HTML elements are the building blocks of a web page. Each element is represented
by a tag that defines the structure or content on the page.
3) How do you create a hyperlink in HTML?
To create a hyperlink, you use the `<a>` (anchor) element with the `href` attribute,
like this:
<a href="https://example.com">Click here to visit Example</a>.
4) How can you add an image in HTML?
You use the `<img>` element with the `src` attribute to specify the image file's
URL, like this:
<img src="image.jpg" alt="Description of the image">.
5) What is the purpose of the HTML `<head>` element?
The `<head>` element contains meta-information about the document, such as its
title, links to stylesheets, character encoding, and more.
6) How do you create a bullet point list in HTML?
You use the `<ul>` (unordered list) element for an unordered list and `<li>` (list
item) elements for each item, like this:
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
7) How can you add a line break in HTML?
You use the `<br>` element to create a line break within text, like this:
This is the first line.<br>This is the second line.