odin-default-css-exercises/flex/06-flex-layout/solution/solution.html

42 lines
1.2 KiB
HTML
Raw Normal View History

2021-08-24 13:32:36 +00:00
<!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>LAYOUT</title>
<link rel="stylesheet" href="./solution.css">
</head>
<body>
<div class="header">
<ul class="left-links">
2022-03-24 12:58:56 +00:00
<li><a href="#">About</a></li>
<li><a href="#">Store</a></li>
</ul>
<ul class="right-links">
2022-03-24 12:58:56 +00:00
<li><a href="#">Profile</a></li>
<li><a href="#">Settings</a></li>
</ul>
2021-08-24 13:32:36 +00:00
</div>
<div class="content">
2022-07-22 15:15:28 +00:00
<img src="./logo.png" alt="Project logo. Represents odin with the project name.">
<div class="input">
<input type="text">
</div>
<div class="buttons">
<button>Do the thing!</button>
<button>Do the other thing!</button>
</div>
2021-08-24 13:32:36 +00:00
</div>
<div class="footer">
<ul class="left-links">
2022-03-24 12:58:56 +00:00
<li><a href="#">Advertising</a></li>
<li><a href="#">Business</a></li>
</ul>
<ul class="right-links">
2022-03-24 12:58:56 +00:00
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
</ul>
</div>
</body>
2021-08-24 13:32:36 +00:00
</html>