-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 1.25 KB
/
index.html
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
<!DOCTYPE html>
<html lang="pt-BR">
<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>MGkLyBr</title>
</head>
<body>
<header style="background: red; width: 100%;height: 100px">
<nav style="background: yellow; width: 20%;height: 25px"></nav>
</header>
<div style="width: 100%; height: 400px; background: purple; display: flex; flex-direction: row;">
<main style="width: 70%; height: 100%; background: blue">
<article style="width: 95%; height: 80%; background: green;">
<section style="width: 100%; height: 30%; margin-bottom: 1%; background: lightgreen"></section>
<section style="width: 100%; height: 30%; margin-bottom: 1%; background: lightgreen"></section>
<section style="width: 100%; height: 30%; margin-bottom: 1%; background: lightgreen"></section>
</article>
<footer style="width: 95%; height: 15%; background: pink;"></footer>
</main>
<aside style="width: 30%; height:100%; background: cadetblue"></aside>
</div>
<footer style="width: 100%; height: 100px; background: pink;"></footer>
</body>
</html>