To make a line "break" before it gets to the end of the browser window, insert a <br> tag.
|
<html> <head> <title>HTML, An Introduction</title> </head> <body> <h3>An Introduction to Hypertext Markup Language</h3> <h4>TUTORIAL DESCRIPTION</h4> <p>HTML is the basic language of the World Wide Web. If you are interested in creating webpages, HTML is the first thing you should learn. In this tutorial, you will</p><ul> <li>learn what HTML stands for</li> <li>learn some basic tags</li> <li>see an example of how a webpage would be encoded with HTML</li></ul> <hr> <h4>SOME EFFECTS OF HTML TAGS</h4><ol> <li>Making text <b>bold</b> or <i>italicized</i></li> <li>Changing the size of text</li> <li>Linking one document to another</li> <li>Creating numbered and non-numbered lists</li></ol> <hr> <h4>PREREQUISITES</h4> <p>You should have had some experience browsing the web, as well as some general experience with computers. Additionally, you should know how to save and retrieve documents on a computer.</p> <hr> <h4>FURTHER READING</h4> <p>There are many other <br> html tutorials listed at Yahoo.</p> </body> </html> |
What would this document look like in a web browser so far?
NEXT: >>