-
Notifications
You must be signed in to change notification settings - Fork 0
/
aplicar_grid.html
80 lines (67 loc) · 1.84 KB
/
aplicar_grid.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Curso de CSS</title>
<style>
html, body {
margin:0;
padding:0;
}
body {
background:rgb(229,229,229);
}
article, aside, section, header, footer, nav {
display:block;
}
main {
width: 960px;
margin: 0 auto;
box-shadow: 0 0 10px #333;
background: #FFF;
}
header {
width: 960px;
height: 110px;
background-color: #FF7F00;
}
nav {
width: 960px;
height: 40px;
background-color: #B28500;
}
.conteudo {
width: 640px;
height: 350px;
float: left;
background-color: #FFD24D;
margin-top: 10px;
margin-bottom: 10px;
}
.apoio {
width: 310px;
height: 350px;
background-color: #DDDDDD;
float: right;
margin-top: 10px;
margin-bottom: 10px;
}
footer {
width: 960px;
height: 60px;
background-color: #999999;
clear: both;
margin-top: 10px;
}
</style>
</head>
<body>
<main>
<header></header>
<nav></nav>
<section class="conteudo"></section>
<section class="apoio"></section>
<footer>Endereco, telefone e outras informacoes</footer>
</main>
</body>
</html>