-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 1.62 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
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
<link rel="stylesheet" href="styles.css" />
<title>Sobre Mim</title>
</head>
<body>
<div class="container">
<div class="avatar">
<h1>Ricardo Brito</h1>
<img src="avatar.png" alt="Imagem de avatar" />
</div>
<div class="info">
<span>👋 Bem-vindo! </span>
<p>"Apaixonado por história e tecnologia."</p>
<ul>
<li>
Natural de
<a
href="https://goo.gl/maps/3cmpErRQ8Dpxu5Xs9"
target="_blank"
rel="noopener noreferrer"
>Goiânia - Goiás</a
>
</li>
<li>Nascido em 26 de novembro de 1991</li>
<li>
Entre em contato pelo <a href="mailto:duc-k@mail.com">E-mail</a>
</li>
<li>
Conecte-se comigo:
<ul>
<li>
<a
href="https://www.linkedin.com/in/ricardo-britto"
target="_blank"
rel="noopener noreferrer"
>LinkedIn</a
>
</li>
<li>
<a
href="https://github.com/duc-k"
target="_blank"
rel="noopener noreferrer"
>GitHub</a
>
</li>
</ul>
</li>
</ul>
</div>
</div>
</body>
</html>