forked from jpwieland/toti-aula-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 1.35 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Oi!</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
.profile-image {
max-width: 200px;
border-radius: 50%;
}
.name {
font-weight: bold;
font-size: 24px;
margin-top: 10px;
}
.description {
margin-top: 10px;
}
.social-links {
margin-top: 20px;
}
.social-links a {
display: inline-block;
margin-right: 10px;
}
.social-links img {
max-width: 30px;
}
</style>
</head>
<body>
<div class="container">
<img class="profile-image" src="https://st2.depositphotos.com/1814084/5204/i/600/depositphotos_52047073-stock-photo-brad-pitt.jpg" alt="Minha Foto Pessoal">
<h1 class="name">Brad Pitt</h1>
<p class="description">Sou um ator</p>
<div class="social-links">
<a href="https://github.com/seu_usuario_do_GitHub"> Github</a>
<a href="https://www.linkedin.com/in/seu_perfil_do_LinkedIn">Linkedin</a>
</div>
</div>
</body></html>