Computer Applications
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.
HTML Intro
1 Like
Answer
<HTML>
<HEAD>
<TITLE> Pace Computer Education </TITLE>
</HEAD>
<BODY BGCOLOR = "GREY" TEXT = "RED">
<H1 ALIGN = "CENTER">
<FONT FACE = "TIMES NEW ROMAN" COLOR = "RED">My First Web Page</FONT>
</H1>
<P ALIGN = "RIGHT">
<FONT FACE = "COMIC SANS MS" COLOR = "BLUE" 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.
</FONT>
</P>
<P> Today, one of the <B> major reasons </B> businesses, homes and other users purchase computers is to gain Internet access. Many companies and organizations assume that the public is <TT> familiar with the Internet </TT>. Web addresses appear on <I> television, in radio broadcasts, in printed news-papers, magazines and in other forms of advertising </I>. 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 <U> missing a tremendous resource </U> for goods, services and information. </P>
Today, one of the <TT> major reasons </TT> businesses, homes and other users purchase computers is to gain Internet access. Many companies and organizations assume that the public is <B> familiar </B> 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 <I> download upgrades or enhancements </I> to software products. To be successful today, you must have an understanding of the Internet. Without it, you are <U> missing </U> a tremendous resource for goods, services and information.
<H3 ALIGN = "LEFT">
<FONT COLOR = "RED" FACE = "COMIC SANS MS">Exciting Features Offered By HTML</FONT>
</H3>
<FONT FACE = "ARIAL" SIZE = "5" COLOR = "BLUE">
<OL>
<LI>E-Mail</LI>
<LI>Information</LI>
<LI>Discussion Groups</LI>
<LI>Online- Shopping</LI>
<LI>Entertainment</LI>
<LI>Programme</LI>
</OL>
</FONT>
<HR WIDTH = "50%">
<FONT COLOR = "BLACK">
<U>HTML, or <B><I>Hypertext Markup Language</I></B>,</U> was created in 1990 by <B>Tim Berners-Lee</B> as a means <TT>to share and format <B><I><U>scientific and academic information</U></I></B></TT> on the <B><I>World Wide Web.</I></B>
</FONT>
</BODY>
</HTML>
Output

Answered By
1 Like
Related Questions
Add a background colour.
<HTML> <BODY bgcolor = "yellow"> <H3>Look: Colored Background!</H3> </BODY> </HTML>
Add a background image.
<HTML> <BODY background = "background.jpg"> <H3>Look: Image Background!</H3> <P>Both gif and jpg files can be used as HTML backgrounds.</P> <P>If the image is smaller than the page, the image will repeat itself.</P> </BODY> </HTML>
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>
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>