write an html program using 10 tags and draw the output of the program
Answers
Answered by
6
Answer:
<html>
<body>
<h3> This is a program using 12 html tag </h3>
<p><b>This text is bold</b></p>
<p><i>This text is italic</i></p>
<p><strong>This text is important!</strong></p>
<em>This text is emphasized</em>
<small>This is some smaller text.</small>
<p>Do not forget to buy <mark>milk</mark> today.</p>
<p>My favorite color is <del>blue</del> red.</p>
<p>My favorite color is <del>blue</del> <ins>red</ins>.</p>
<p>This is <sub>subscripted</sub> text.</p>
<p>This is <sup>superscripted</sup> text.</p>
</body>
</html>
Explanation:
Similar questions