Computer Science, asked by poojasoni05, 6 months ago

Write the HTML code to generate the following web page with the given below specifications:

Instructions: 5

• The Title of the page is “Recycle”

• The Background colour of the page is “Yellow”

• The font used for the Heading is Tahoma, colour is Blue and is align center.

• The sub heading in Verdana font the color is Red. Rest of the text is in the Arial Black Font.

• The name of the image is “Recycle.jpg”. It is aligned to the right

• The text,” How can you help?”, is a reading with level 2

• The links are provided in a Unordered List, with the Ordered List used in between.

• The pages are linked as follow:

❖ What is Garbage: Garbage.htm

❖ Meaning of Reduce, Recycle & Reuse: Recycle.htm

❖ Weekly Activities: Activ.htm

❖ Recycle City: RCity.htm

• Place a horizontal line across the webpage.​

Answers

Answered by bushra028
16

Answer:

<HTML>

<HEAD>

<TITLE>Recycle</TITLE></HEAD>

<BODY BGCOLOR="yellow">

<CENTER>Recycle</CENTER><FONT FACE="Tahoma"><BASEFONT COLOR="blue">

<H2>Recycle</H2>

<FONT FACE="verdana"><FONT COLOR="red">

<img src="recycle.jpg" alt="Recycle">

<RIGHT>Recycle</RIGHT>

<BASEFONT COLOR="black">

<FONT FACE="arial">

<H2>How can you help?</H2>

<ol>

<li>What is Garbage</li>

ALINK="Garbage.htm">

<li>Meaning of Reduce,Reuse & Recycle</li>

ALINK="Recycle.htm">

<li>Weekly Activities</li>

ALINK="Activ.htm">

<li>Recycle City</li>

ALINK="RCity.htm"></ol>

<HR>Recycle</HR>

</HTML>

Explanation:

May be I've done it wrong

Similar questions