Computer Science, asked by myragupta, 6 months ago

SECTION :E- Long Answer Questions
1. Write the HTML for the following output, which will show the

Text with font size "7"​

Answers

Answered by anushkabhakre1803
1

Answer:

if in case you're asking about the font of the headings then the key input is <h7>

Explanation:

<h1> is the largest heading in HTML

whereas <h7> is the smallest font size (as default anyways there can be a smaller font)

HTML code:

<html>

<body>

<h7>

(the heading)

</h7>

</body>

</html>

Similar questions