Q1. Write a program to print furniture names in 6 different headings.
for html first answer will be marked brain-liest
Answers
Answered by
2
Answer:
This is the HTML códe for the question.
<!DOCTYPE html>
<html>
<head>
<title>Furniture Name</title>
<meta charset="UTF-8"/>
</head>
<body>
<h1>Furniture Name (Heading 1)</h1>
<h2>Furniture Name (Heading 2)</h2>
<h3>Furniture Name (Heading 3)</h3>
<h4>Furniture Name (Heading 4)</h4>
<h5>Furniture Name (Heading 5)</h5>
<h6>Furniture Name (Heading 6)</h6>
</body>
</html>
H1 is the largest heading while H6 is the smallest heading. Replace the line inside heading tags with any furniture name.
See the attachment for the output ☑.
Attachments:
Similar questions