-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout -elements-lecuter.html
More file actions
33 lines (32 loc) · 1.11 KB
/
layout -elements-lecuter.html
File metadata and controls
33 lines (32 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Layout Elements and Classes</title>
<link rel="stylesheet" href="css/layout-elements-classes-lecture.css">
</head>
<body>
<div class="page-wrapper">
<header class="container py-20">
<div class="row justify-content-between ">
<div class="column flex-shrink logo-wrapper">
<h1>LOGO</h1>
</div>
<nav class="column flex-shrink justify-content-center">
<ul class="d-flex align-items-center gap-20">
<li>
<a href="#">Menu Item</a>
</li>
<li>
<a href="#">Menu Item</a>
</li>
<li>
<a href="#">Menu Item</a>
</li>
</ul>
</nav>
</div>
</header>