0% found this document useful (0 votes)
802 views3 pages

Assignment-6 Q.: Create A HTML Webpage Which Display The Following List

The document provides instructions to create an HTML webpage listing fruits and vegetables and newspapers and magazines. It includes two sections - Fruits & Vegetables with lists of various items, and Newspapers & Magazines with numbered and lettered lists. The coding section shows the HTML tags used to display the lists with formatting like different list types, headings, fonts, background color, and a marquee tag.

Uploaded by

Vaibhav Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
802 views3 pages

Assignment-6 Q.: Create A HTML Webpage Which Display The Following List

The document provides instructions to create an HTML webpage listing fruits and vegetables and newspapers and magazines. It includes two sections - Fruits & Vegetables with lists of various items, and Newspapers & Magazines with numbered and lettered lists. The coding section shows the HTML tags used to display the lists with formatting like different list types, headings, fonts, background color, and a marquee tag.

Uploaded by

Vaibhav Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

ASSIGNMENT-6

Q. Create a HTML webpage which display the following list.

FRUITS & VEGETABLES


A. Vegetables
• Onion
• Tomato
• Radish
• Potato
• Carrot
B. Fruits
• Apple
• Banana
• Water-Melon
• Mango
• Grapes
NEWSPAPERS & MAGAZINES
o Newspaper
5. The Times of India
6. Hindustan Times
7. Navbharat Times
8. Punjab Kesari
9. DainikJagran

o Magazine
i. Business Times
ii. The Week
iii. India Today
iv. Harvard Business Review
v. Computer World

Apply following parts:


 Put horizontal line after newspaper and magazine.
 Apply heading tag for newspaper and magazine.
 Apply base font for whole web page and different colors for subjects of
each semester.
 Apply a background color.
 Insert marquee tag displaying “Newspapers and Magazines”.
CODING:-

<HTML>
<BODY>
FRUITS AND VEGETABLES
<OL TYPE="A">
<LI>VEGETABLES</LI>
<UL TYPE="DISC">
<LI>ONION</LI>
<LI>TOMATO</LI>
<LI>RADISH</LI>
<LI>POTATO</LI>
<LI>CARROT</LI>
</UL>
<LI>FRUITS</LI>
<UL TYPE="DISC">
<LI>APPLE</LI>
<LI>BANANA</LI>
<LI>WATERMELON</LI>
<LI>MANGO</LI>
<LI>GRAPES</LI>
</UL>
</OL>
NEWSPAPERS AND MAGAZINES
<UL TYPE="CIRCLR">
<LI>NEWSPAPER</LI>
<OL TYPE="5"START="5">
<LI>THE TIMES OF INDIA</LI>
<LI>HINDUSTAN TIMES</LI>
<LI>NAVBHARAT TIMES</LI>
<LI>PUNJAB KESARI</LI>
<LI>DAINIK JAGRAN</LI>
</OL>
<LI>MAGAZINE</LI>
<OL TYPE="I">
<LI>BUSINESS TIMES</LI>
<LI>INDIA TODAY</LI>
<LI>HARVARD BUSINESS REVIEW</LI>
<LI>COMPUTER WORLD</LI>
</OL>
</UL>
</BODY>
</HTML>
OUTPUT:-

You might also like