Computer Applications
Comments in HTML source.
<HTML>
<BODY>
<!--This comment will not be displayed-->
<P>This is a regular paragraph</P>
</BODY>
</HTML>
HTML Intro
1 Like
Answer
Output

Answered By
1 Like
Related Questions
Centralized heading.
<HTML> <BODY> <H1 align = "center">This is heading 1</H1> <P>The heading above is aligned to the center of this page. The heading above is aligned to the center of this page. The heading above is aligned to the center of this page.</P> </BODY> </HTML>Defining and using a horizontal rule.
<HTML> <BODY> <P>The hr tag defines a horizontal rule:</P> <HR> <P>This is a paragraph</P> <HR> <P>This is a paragraph</P> <HR> <P>This is a paragraph</P> </BODY> </HTML>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>