<!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">
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
|
|
rel="stylesheet">
|
|
<link rel="stylesheet" href="./css/global.css">
|
|
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<div class="header__logo">
|
|
<img src="./img/wild-animals.png" alt="img_logo">
|
|
</div>
|
|
<nav class="header__menu">
|
|
<ul>
|
|
<li><a href="#">HOME</a></li>
|
|
<li><a href="#">ANIMALS</a></li>
|
|
<li><a href="#">NEW ANIMAL</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<div class="container">
|
|
|
|
<table class="main__table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">First</th>
|
|
<th scope="col">Last</th>
|
|
<th scope="col">Handle</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Mark</td>
|
|
<td>Otto</td>
|
|
<td>@mdo</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Jacob</td>
|
|
<td>Thornton</td>
|
|
<td>@fat</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2">Larry the Bird</td>
|
|
<td>@twitter</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<span>Animals 2023 𝕔</span>
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|