-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterno.html
61 lines (52 loc) · 1.2 KB
/
interno.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Atv 2 - Parte interna</title>
<style>
.diva {
background-color: #ffa500;
width: 500px;
height: 500px;
}
.divb {
background-color: #90ee90;
width: 250px;
height: 250px;
}
.paragrafo {
background-color: red;
font-family: monospace;
font-weight: bold;
font-size: 25px;
}
.span {
color: white;
}
.divc {
width: 50%;
height: 50vh;
background-color: rgb(173, 216, 230);
}
.divd {
width: 75%vw;
height: 50%;
background-color: rgb(255, 0, 0);
}
</style>
</head>
<body>
<div class="diva">
<div class="divb">
<div>
<p class="paragrafo"><span class="span">Teste - Atividade 2</span></p>
</div>
</div>
</div>
<div class="divc">
<div class="divd">
</div>
</div>
</body>
</html>