2021-08-23 17:18:56 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2022-01-30 18:16:13 +00:00
|
|
|
<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>Flex Header 2</title>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="header">
|
|
|
|
<div class="logo">
|
|
|
|
LOGO
|
|
|
|
</div>
|
|
|
|
<ul class="links">
|
|
|
|
<li><a href="google.com">link-one</a></li>
|
|
|
|
<li><a href="google.com">link-two</a></li>
|
|
|
|
<li><a href="google.com">link-three</a></li>
|
|
|
|
</ul>
|
|
|
|
<button class="notifications">
|
|
|
|
1 new notification
|
|
|
|
</button>
|
|
|
|
<div class="profile-image"></div>
|
2021-08-24 13:32:36 +00:00
|
|
|
</div>
|
2022-01-30 18:16:13 +00:00
|
|
|
</body>
|
2021-08-23 17:18:56 +00:00
|
|
|
</html>
|