Computer Applications

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.

HTML Intro

12 Likes

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
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. Basic HTML ELements, Computer Applications Code 165 Sumita Arora Solutions CBSE Class 10.

Answered By

7 Likes


Related Questions