- index.html
- style.css
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Paragraphs</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>A paragraph is a piece of writing consisting of several sentences.</p>
A paragraph is used to group homogeneous units of a statement.
A paragraph is usually indented to make it stand out.
That's how they are, paragraphs.
</body>
</html>
CSS
p {
margin-top: 24px;
margin-bottom: 24px;
}
You have moved to another page
GoalsCompleted
0
Mark up three more paragraphs using the p
tag:
- "A paragraph is used to group homogeneous units of a statement."
- "A paragraph is usually indented to make it stand out."
- "That's how they are, paragraphs."