Computer Applications
Types of unordered lists.
<HTML>
<BODY>
<H4>Disc bullets list:</H4>
<UL type="disc">
<LI>Apples</LI>
<LI>Bananas</LI>
</UL>
<H4>Circle bullets list:</H4>
<UL type="circle">
<LI>Apples</LI>
<LI>Bananas</LI>
</UL>
<H4>Square bullets list:</H4>
<UL type="square">
<LI>Apples</LI>
</UL>
</BODY>
</HTML>
HTML Intro
1 Like
Answer
Output

Answered By
1 Like
Related Questions
Text formatting.
<HTML> <BODY> <B>This text is bold</B> <BR> <STRONG>This text is strong</STRONG> <BR> <BIG>This text is big</BIG> <BR> <EM>This text is emphasized</EM> <BR> <I>This text is italic</I> <BR> <SMALL>This text is small</SMALL> <BR> This text contains<SUB> subscript</SUB> <BR> This text contains <SUP> superscript </SUP> </BODY> </HTML>
Start Notepad from Programs menu. In the opened file give the coding for the following :
(i) Give the Title Pace Computer Education. (this should appear on title bar)
(ii) Make the background colour as Grey and text colour as Red.
(iii) Give the heading My First Web Page as H1 tag, Face = Times New Roman, Color = Red, Align = Center.
(iv) Write the paragraph with
<P>
tag, Align = Right, Font = Comic Sans MS, Color = Blue and Size = 4.Today, one of the major reasons businesses, homes and other users purchase computers is to gain Internet access. Many companies and organizations assume that the public is familiar with the Internet. Web addresses appear on television, in radio broadcasts, in printed news-papers, magazines and in other forms of advertising. Software companies use their Web sites as a place for you to download upgrades or enhancements to software products. To be successful today, you must have an understanding of the Internet. Without it, you are missing a tremendous resource for goods, services and information.
(v) Create two copies of above paragraph and apply
<B>
tag,<TT>
tag,<I>
and<U>
tags in between.(vi) "Exciting Features Offered By HTML". Give it as heading H3, Align = Left, Color = Red, Font = Comic Sans Ms.
(vii) Apply any Font style, Size = 5 on the following points :
1. E-Mail 2. Information 3. Discussion Groups 4. Online- Shopping 5. Entertainment 6. Programme
(viii) Add a horizontal rule spread on the 50% of the browser window.
(ix) Combine different font effects :
<B>
,<I>
,<U>
and<TT>
.(x) Select File menu and click on Save, type your file name with extension .HTML, and click on Save button to complete the procedure of saving.
Types of ordered lists.
<HTML> <BODY> <H4>Numbered list:</H4> <OL> <LI>Apples</LI> <LI>Bananas</LI> </OL> <H4>Letters list:</H4> <OL type="A"> <LI>Apples</LI> <LI>Bananas</LI> <LI>Lemons</LI> <LI>Oranges</LI> </OL> <H4>Lowercase letters list:</H4> <OL type="a"> <LI>Apples</LI> <LI>Bananas</LI> </OL> <H4>Roman numbers list:</H4> <OL type="I"> <LI>Apples</LI> <LI>Bananas</LI> </OL> <H4>Lowercase Roman numbers list:</H4> <OL type="i"> <LI>Apples</LI> <LI>Bananas</LI> </OL> </BODY> </HTML>
Nested List.
<HTML> <BODY> <H4>A nested List:</H4> <ul> <LI>Coffee</LI> <LI>Tea</LI> <ul> <LI>Black tea</LI> <LI>Green tea</LI> </UL> <LI>Juice</LI> <LI>Milk</LI> </UL> </BODY> </HTML>
Definition List.
<HTML> <BODY> <H4>A Definition List:</H4> <DL> <DT>Coffee</DT> <DD>Black hot drink</DD> <DT>Milk</DT> <DD>White cold drink</DD> </DL> </BODY> </HTML>