KnowledgeBoat Logo
|

Computer Applications

Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for any four specifications out of the given six specifications.

Write HTML code to design the web page as shown, considering the specifications that follow. CBSE 2023 Computer Applications Code 165 Class 10 Question Paper Solved.

Specifications :

  • The background color of the page should be yellow and the text for the page should be in blue color.
  • Heading 'Home Services' should be the first level of heading.
  • The image named service.png should be placed on the web page.
  • Font size for the paragraph and the list of services should be 4 and Font face should be Verdana. Superscript tags should be used wherever required.
  • The services (as shown in the above web page) should be written with the help of the unordered list.
  • The bottom-most line of 'Queries : help@homeservices.com' should be a link to open the user's default mail client to send queries to the mentioned email id.

HTML Advanced Features

15 Likes

Answer

<HTML>
<BODY BGCOLOR = "YELLOW" TEXT = "BLUE">
<H1> Home Services </H1>
<IMG SRC = "service.png" ALT = "image">
<FONT FACE = "VERDANA" SIZE = "4">
<P>
We are happy to provide you all help at your residence. 
</P>
<P> 
Special discount offers from (1<SUP>st</SUP> May, 2022 to 30<SUP>th</SUP> June, 2022). 
</P>
<P>
Please contact us for the following services :
</P>
<UL TYPE = "DISC">
<LI> Maid/Servant (Cleaning) </LI>
<LI> Maid/Servant (Cooking) </LI>
<LI> Driver </LI>
</UL>
</FONT>
<A HREF = "mailto:help@homeservices.com">
Queries:help@homeservices.com 
</A>
</BODY>
</HTML>

Answered By

11 Likes


Related Questions