Computer Applications
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>
HTML Intro
1 Like
Answer
Output

Answered By
2 Likes
Related Questions
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>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>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>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>