KnowledgeBoat Logo
|

Computer Applications

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.

Write HTML code to design the shown web page titled Events considering the specifications as given below. CBSE 2023 Computer Applications Code 165 Class 10 Question Paper Solved.

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.

HTML Advanced Features

13 Likes

Answer

<HTML>
<HEAD>
<TITLE>
Events
</TITLE>
</HEAD>
<BODY BGCOLOR = "CYAN">
<FONT FACE = "ARIAL">
<H1>Events</H1>
<FONT SIZE = "5">
<P>
The following events are scheduled to be held on 1<SUP>st</SUP> April, 2023.
</P>
<P> 
The timings are as follows : 
</P>
<OL>
<LI> 9.00 AM — 10.00 AM Flag Hoisting </LI>
<LI> 10.00 AM — 11.00 AM Painting Competition </LI>
<LI> 11.00 AM — 12.30 PM Dance Competition </LI>
<LI> 12.30 PM — 1.30 PM Song competition </LI>
<LI> 1.30 PM — 2.00 PM Closing Ceremony </LI>
</OL>
<B> 
For any queries contact <A HREF = "mailto:queries@event.com"> queries@event.com </A> 
<BR>
Phone : 9999999999 
</B>
</FONT>
</FONT>
</BODY>
</HTML>

Answered By

9 Likes


Related Questions