Computer scienceFrontendHTMLHTML element categories

Layout elements

Add tags

Report a typo

Add tags to the page according to the hints from the checklist.

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Site</title>
</head>
<body>

<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contacts</a>
<h1>My first site</h1>
<section id="about">
<h2>About</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Facilisi cras fermentum odio eu feugiat. In egestas erat imperdiet sed euismod nisi. In hac habitasse platea dictumst quisque.</p>
<p>Vitae turpis massa sed elementum tempus egestas. Ipsum dolor sit amet consectetur adipiscing elit pellentesque habitant morbi. Auctor elit sed vulputate mi sit. Dolor morbi non arcu risus.</p>
</section>
<section id="portfolio">
<h2>Portfolio</h2>
<div>
<img src="https://via.placeholder.com/150">
<img src="https://via.placeholder.com/150">
<img src="https://via.placeholder.com/150">
</div>
</section>
<section id="contacts">
<h2>Contacts</h2>
<ul>
<li><a href="github.com">Github</a></li>
<li><a href="gitlab.com">Gitlab</a></li>
<li><a href="bitbucket.org">Bitbucket</a></li>
</ul>
Completed 1 of 5
The header of the site has a navigation bar and the first level heading
There are three navigation links inside the <nav> tag
___

Create a free account to access the full topic