Computer Applications
Use of break <BR> tag.
<HTML>
<BODY>
<P>
To break<BR>lines<BR>in a<BR>paragraph<BR>use the BR tag.
</P>
</BODY>
</HTML>
HTML Intro
2 Likes
Answer
Output

Answered By
1 Like
Related Questions
Consider the following web page:

(a) The text at P is :
- a web address
- a postal address
- an email address
- an office address
(b) To follow a link to find information, the user should click at :
- P
- R
- S
- T
(c) The alignment of text at T is :
- Left
- right
- center
- same as alignment of pointer S
(d) The text at S provides a way to contact Ski Breaks Ltd using :
- fax
- post
- telephone
(e) To use the Internet to find more websites about winter sports, the user should use :
- a book
- an email
- a CD ROM
- a search engine
Text inside paragraphs is displayed.
<HTML> <BODY> <P> This paragraph contains a lot of lines in the source code, but the browser ignores it. </P> <P> This paragraph contains a lot of spaces in the source code, but the browser ignores it. </P> <P> The number of lines in a paragraph depends on the size of your browser window. If you resize the browser window, the number of lines in this paragraph will change. </P> </BODY> </HTML>HTML editor ignores your formatting.
<HTML> <BODY> <P> My Bonnie lies over the ocean. My Bonnie lies over the sea. My Bonnie lies over the ocean. Oh, bring back my Bonnie to me. </P> <P> Note that your browser simply ignores your formatting!</P> </BODY> </HTML>The heading tags.
<HTML> <BODY> <H1>This is heading 1</H1> <H2>This is heading 2</H2> <H3>This is heading 3</H3> <H4>This is heading 4</H4> <H5>This is heading 5</H5> <H6>This is heading 6</H6> <P>Use heading tags only for headings. Don't use them to make something big. Use other tags for that.</P> </BODY> </HTML>