CBSE Class 10 Computer Applications Question 72 of 77

HTML I — Basic HTML Elements — Question 43

Back to all questions
43
Question

Question 31

Write a complete HTML Web page with the title "Foo Bar" and a heading at the top which reads "Happy Hour at the Foo Bar", followed by the words "Come on down!" in regular type.

Answer
<HTML>
<HEAD>
    <TITLE> Foo Bar </TITLE>
</HEAD>

<BODY>
    <H1> Happy Hour at the Foo Bar </H1>
    <P>Come on down!</P>
</BODY>
</HTML>
Output