- index.html
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Strong and b tags</title>
</head>
<body>
<h1>Text markup</h1>
<p>Learn how to add text content to a simple HTML page: paragraphs, headings, subheadings, lists, and more.</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 only use them inside the <body> tag.</p>
</body>
</html>
You have moved to another page
GoalsCompleted
0
- Highlight the introductory paragraph: wrap the entire text of the first paragraph inside the
<b>
tag. - Highlight an important detail: enclose the word "only" inside the
<strong>
tag in the third paragraph.