Our list is missing a title. Let’s add one with the script.
The title must be an h3
element with the Browsers
inner text.
It should appear immediately before the ul
tag.
Use the inline script.
This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task
index.html
<!DOCTYPE html>
<html>
<head>
<title>Browsers</title>
</head>
<body>
<ul>
<li>Chrome</li>
<li>Safari</li>
<li>Brave</li>
<li>Opera</li>
</ul>
</body>
</html>