-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
63 lines (54 loc) · 1.4 KB
/
Copy pathteam.html
File metadata and controls
63 lines (54 loc) · 1.4 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<link rel="icon" href="imgs/logo.png">
<title>Equipe</title>
<style>
body {
text-align: center;
background: rgb(0, 0, 109);
color: rgb(33, 191, 202);
}
h1 {
text-transform: uppercase;
}
.text {
display: flex;
width: 72%;
margin-top: 8%;
margin-left: 13%;
padding: 25px;
justify-content: center;
background: rgb(5, 39, 66);
border-radius: 100px;
}
p {
font-size: 35px;
font-weight: bolder;
}
</style>
</head>
<body>
<header>
<h1>Membros da equipe</h1>
</header>
<a href="index.html" title="Página inicial">
<img src="imgs/logo.png" alt="Página inicial" class="logo">
</a>
<div class="text">
<p>Ester Silva Santos - 23094
<br><br>
Kessia Natielly dos Santos - 23178
<br><br>
Kawan Nascimento da Silva - 23185
<br><br>
Leonardo Lucas Gomes Batista - 23039
<br><br>
Luiz Fernando Coelho Clementino - 23139
</p>
</div>
</body>
</html>