BR and Q tag in Html

Uses of <br> tag

This tag inserts a single line break.
This tag is an empty tag which means that it has no end tag, but we can enter <br/>.


Uses of <q> tag

This element makes the text in double quotes.

Example:

<!DOCTYPE html>
<html>
<head>
<title>Insert and Delete tag</title>
</head>

<body>
<!--Without BR tag-->
Line 1
Line 2
Line 3
Line 4

<!--With BR tag--> <br>Line 1
<br>Line 2
<br>Line 3
<br>Line 4

<br><br>
He said<q>Today was a busy day.</q><br>
</body>
</html>

Output of this code will look like this: