Computer scienceFrontendHTMLHTML IntroText formatting

Headings, Paragraphs, Comments

Give h1 heading

Report a typo

You need to add two pieces of text to the HTML code below. One should be formatted with the most important heading level and the other with the least important level.

Add this text formatted as the most important level of heading:

Heading - Most Important

And then add this text formatted as the least important level of heading:

Heading - Least Important

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Headings</title>
</head>
<body>
<p>Add the headings above this line</p>
</body>
</html>

Completed 1 of 3
Add most important level of heading
Add least important level of heading
___

Create a free account to access the full topic