-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiv_span.html
71 lines (52 loc) · 1.17 KB
/
div_span.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
<!DOCTYPE html>
<html>
<head>
<title>div e span</title>
<meta charset="utf-8">
<style type="text/css">
#topo {
background: blue;
}
#conteudo {
background: red;
}
.produto {
background: gray;
margin: 10px;
}
#rodape {
background: green;
}
#assinatura {
background: pink;
}
</style>
</head>
<body>
<div id="topo">
<img src="imagens/amazon.png" width="200">
<ul>
<li>Home</li>
<li>Lista</li>
<li>Contato</li>
</ul>
</div>
<div id="conteudo">
<div class="produto">
Produto 1
</div>
<div class="produto">
Produto 2
</div>
<div class="produto">
Produto 3
</div>
</div>
<div id="rodape">
Todos os direito reservados
</div>
<span id="assinatura">
Vítor
</span>
</body>
</html>