-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout-elements-classes-lecture.html
More file actions
52 lines (50 loc) · 1.93 KB
/
layout-elements-classes-lecture.html
File metadata and controls
52 lines (50 loc) · 1.93 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!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-element-classes.css">
</head>
<body>
<div class="page-wrapper">
<header class="container">
<div class="row">
<div class="column logo-wrapper">
<h1>LOGO</h1>
</div>
<nav class="column-navigation flex-shrink justify-content-center navigation">
<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>
<header class="container py-20">
</header>
<section class="container justify-content-center hero">
<div class="row">
<div class="column"></div>
<div class="column"></div>
</div>
</section>
<!-- <header class="container" style="background-color: darkgrey; height:60px;"></header>-->
<!-- <main class="container flex-grow" style="background-color: #e11d48">-->
<!-- <div class="row gap-20" style="background-color: darkgreen">-->
<!-- <aside class="column side-nav" style="background-color: blue"></aside>-->
<!-- <div class="column" style="background-color: blue"></div>-->
<!-- </div>-->
<!-- </main>-->
</div>
</body>
</html>