-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDesafio_Aula4.html
91 lines (70 loc) · 1.73 KB
/
Desafio_Aula4.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
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Desafio Aula 4 - Parte 2</title>
<style>
body{
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-display: inherit;
line-height: 0;
}
#div1{
background-color: blue;
height: 10vh;
display: flex;
flex-direction: row;
align-items: center;
color: white;
font-weight: bolder;
}
#div1 div.imagem{
margin: 20px;
height: 50%;
width: 7%;
}
#div2{
margin: 15px;
height: 40vh;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}
img{
height: 100%;
width: 100%;
}
#div3{
margin: 15px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
#div3 div.info-2{
text-align: end;
}
</style>
</head>
<body>
<div id="div1">
<div class="imagem">
<img src="menu.png">
</div>
<div><h3>Projeto</h3></div>
</div>
<div id="div2"><img src="teste.jpg"></div>
<div id="div3">
<div class="info-1">
<p><h5>Cabo Frio - RJ</h5></p>
<p><h5>João Garcia</h5></p>
</div>
<div class="info-2">
<p><h5>R$5.000,000</h5></p>
<p></p><h5>Venda</h5></p>
</div>
</div>
</body>
</html>