Using Text

Back to Tutorials

Previous Step: Getting Started with HTML

Note: this section is incomplete, please see my newer HTML and JavaScript tutorials available on 3DM Design Dev Journal instead.

Most text in on an HTML page is paragraph text. You create paragraph text by surrounding a line or block of text with the p tag:

<p>Using p tags to denote a paragraph of text is pretty easy.</p>

Each set of p tags denotes a separate paragraph and skips a line before the next paragraph starts. Ordinarily, paragraph text will stretch across the full width of the page and wrap automatically. You can cause a line to break in a particular spot with the br tag however:

HTML code Result in browser
<p>


Back to Tutorials

Back to 3D Metropolis/Design