Quoted & markered text

Notes:

HTML q tag and HTML mark tag :
We use html q tag, to display some text surrounded by quotation marks.
We use html mark tag, to display some text highlighted with yellow color.
html q tag : is a paired tag stands for quoted text.
html mark tag: is a paired tag stands for marker-ed text.
Example code:

<html>
<head>
<title>HTML q and mark tags</title>
</head>
<body>
Hi <q>HTML!</q> <br/>
Hi <mark>HTML!</mark> <br/>
</body>
</html>

Interview Questions: