Wednesday 16 August 2023

Web Development 15

 

LECTURE # 13

14/8/2023
Question #1: Why is field set used for?

Answer: Field set is used to make a block around the text written with in the field set tag.
For Example:

<!DOCTYPE html>
<html>
<head>
<title>Document</title>
</head>
<body>
<fieldset>
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Odit laboriosam dolores voluptas eum <br>excepturi inventore quam
illo sint atque quaerat perferendis consectetur <br>labore harum,
facere magni incidunt id voluptate repellat?
</fieldset>
</body>
</html>

Question #2: Why is Legend tag used for?

Answer: Legend tag is used to describe the field set box. For example, ____general box________.

Question #2: Why is Div tag used for?

Answer: Div tag is like a container (is only useful when CSS is used It is very important tag).