-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAtividade-1.html
99 lines (95 loc) · 3.69 KB
/
Atividade-1.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
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>Teste de Aprovação</title>
<link rel="icon" type="image/x-icon" href="Favicon.png">
</head>
<body>
<div class = "container">
<div class = "card">
<div class = "imagem" > <img class= "fundo "src="fundo.png" alt="fundo"></div>
<div class = "text"> <strong class="textinho"><span style ="background-color: #f7da00; width: 50px; height: 15px;"> Learning</span></strong>
<div class="sub"> <p1> Published 21 dec 2023</p1></div>
<div class = "titulo"> <strong> HTML & CSS foundations </strong></div>
<div class = info> <p2> These languages are the backbone of every
website, defining structure, content, and
presentation.</p2></div>
<div class="rosto"><img class="infrosto" src="Rosto (2).png" alt="Rosto"><p3 class="nome"> Greg Hooper</p3></div>
</div>
</div>
<style>
.container{
align-items: center;
display: flex;
justify-content: center;
height: 90ch;
}
.card{
width: 235px;
height: 340px;
background-color: white;
border-radius: 20px;
border-color: black;
border: 1px solid;
}
.fundo{
width: 210px;
height: 125px;
border-radius: 5%;
margin: 10px;
margin-bottom: 5%;
}
.imagem{
display: flex;
justify-content: center;
}
.textinho{
margin: 10%;
font-size: small;
font: bold;
font-family: Arial;
}
.sub{
margin: 5%;
margin-left: 10% ;
font-size: x-small;
font-family: arial;
}
.titulo{
margin-left: 10%;
font-size: medium;
font-family: arial;
}
.info{
margin: 3%;
margin-left: 10%;
font-size: smaller;
color: gray;
font-family: arial;
}
.infrosto{
width: 23px;
height: 23px;
}
.rosto{
margin: 7%;
position: relative;
}
.nome{
font-size: small;
margin: 5%;
font: bold;
font-family: arial;
margin: 0 auto;
top: 50%;
left: 50%;
transform: translate(-95%,-50%);
text-align: center;
position: absolute;
}
body{
background-color: #f7da00;
}
</style>
</body>
</html>