Review the HTML tags that we have gone over in this lesson. Research HTML tags on the web and identify two new tags. Use these tags along with the ones you have learned in the lesson and construct a simple web page in HTML.

Some suggestions of simple tags include those which:
create a simple line break;
another way to create bold text;
underline text;
make text within the tag bigger than the rest of the text (specifying the size of the text);
mark or highlight a word or parts of your text;
a short quotation;
subscript text;
and superscript text.

You will only submit your document with the html you have created. However, it is always a good idea to use an HTML test bed to check your work.

Respuesta :

Answer: <span> and <div> new tags

Explanation:

<!DOCTYPE html>

<html>

<head>

<title>My web page</title>

</head>

<body>

<div>

<p> This is an example <br> Line break</p>

<p> Example of <b>Bold</b> text</p>

<p>Example of <u>underline</u> text</p>

<p> Example of <span style="font-size:20px">Bigger ( font size 20)</span> text</p>

<p> Example of <mark>Mark</mark> text</p>

<p> Example of short quotaion <q>The whole point of getting things done is knowing what to leave undone.</q></p>

<p>Example subscript --> X <sub>2</sub></p>

<p>Example of superscript --> 2 <sup>x</sup></p>

</div>

</body>

</html

Q&A Education