- index.html
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Em and i tags</title>
</head>
<body>
<h1>Text markup</h1>
<p><b>Learn how to add text content to a simple HTML page: paragraphs, headings, subheadings, lists, and more.</b></p>
<p>You've previously learned about the tags needed to create a simple HTML page and some of the service tags that are not displayed in the browser.</p>
<p>In this article, we'll explore tags for marking up text. You can <strong>only</strong> use them inside the <body> tag.</p>
</body>
</html>
You have moved to another page
GoalsCompleted
0
- Enclose the phrase "marking up text" inside the
em
tag in the third paragraph. - Use the
i
tag to mark up the term "browser" in the second paragraph.