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.

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
(i) Write a CSS code to display the first level heading text as My School in Green color and center-aligned.
(ii) Write the CSS code to display the following paragraph below the above mentioned heading :
This is my School I study in class 12
The properties of the paragraph content should be as follows :
(I) Text color should be yellow
(II) Font size should be 25 px
(III) Font style should be bold
Write the full form of the following protocols :
(a) HTTPS
(b) TCP
(c) SSH
Write the HTML code to design the below shown web page titled 'Events' considering the specifications as given below. You can write the code for any four specifications out of the given six specifications.
Specifications :
- The background color of the page should be cyan, the font face for the page should be Arial.
- Heading 'Events' should be the first level of heading.
- Font size for the paragraph and the list of products should be 5.
- The schedule (as shown in the above web page) should be written with the help of the numbered list. Superscript tags should be used wherever required.
- The bottom-most lines of 'For any queries …..' and 'Phone : …..' should be in bold.
- The contact email queries@event.com should be a link to open the user's default mail client to send queries to the mentioned email id.
Arif works in a school as a web designer. He has been assigned the task of uploading the calendar of holidays for the month of March. He was supposed to design an HTML table for the same.
Help him to complete the table with the right statements in the blanks. Observe the table and attempt any four questions (out of five) given after the table.
MARCH 2023 DAYS Mon Tue Wed Thu Fri Sat Sun DATES 6 7 8 9 10 11 12 14 <html> <head> <title> </title> </head> <body> <table> <tr> <td colspan = ................ ><!- STATEMENT-1> MARCH 2023 </td> </tr> ................ <!- STATEMENT-2> <th>DAYS</th> <th>Mon</th> <th>Tue</th> <th>Wed</th> <th>Thu</th> <th>Fri</th> <th>Sat</th> <th>Sun</th> ................ <!- STATEMENT-3> <tr> <td .................. = 2><!- STATEMENT-4> DATES </td> <td>6</td> <td>7</td> <td>8</td> <td>9</td> <td>10</td> <td>11</td> <td>12</td> </tr> <tr> <td> </td> <td> .................. </td><!- STATEMENT-5> </tr> </table> </body> </html>
(a) Write the attribute value to complete Statement-1 to achieve the output as given in the above table.
(b) Write the tag to complete Statement-2 to achieve the output as given in the above table.
(c) Write the attribute value to complete Statement-3 to achieve the output as given in the above table.
(d) Write the attribute name to complete Statement-4 to achieve the output as given in the above table.
(e) Write the appropriate answer for the blank given in Statement-5 to achieve the output as given in the above table.