Working with Text
Paragraphs
<body>
<p>Paragraph 1.</p>
<p>Paragraph 2.</p>
</body>
Headings
</head>
<body>
<h1>This is a heading 1</h1>
<h2>This is a heading 2</h2>
<h3>This is a heading 3</h3>
<h4>This is a heading 4</h4>
<h5>This is a heading 5</h5>
<h6>This is a heading 6</h6>
</body>
Strong Element (bold text)
<body>
<strong>Bold text</strong>
</body>
Em Element (italic text)
<body>
<em>Some emphasized text</em>
</body>
Comments
<!-- I am a html comment -->