-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.18 KB
/
index.html
File metadata and controls
35 lines (33 loc) · 1.18 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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portifólio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Menu do cabeçalho -->
<div class="cabecalho">
<ul>
<li><a class="selecionado" href="index.html">Sobre mim</a></li>
<li><a href="formacao.html">Formação</a></li>
<li><a href="portifolio.html">Portifólio</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</div>
<!-- Corpo da página -->
<div class="corpo">
<div class="conteudo">
<p>Me chamo Samoel Dewes, tenho 25 anos e atualmente trabalho como Desenvolvedor de Sistemas de Informação a
5 anos na empresa <b>Sysmo Sistemas.</b></p>
<p>Nas horas vagas sou investidor na bolsa de valores, realizando estudos sobre prospectivas de ações.</p>
<img class="img-perfil" src="samoel.jpeg" alt="foto pessoal">
</div>
</div>
<!-- Rodapé da página -->
<div class="rodape">
Site desenvolvido por Samoel Dewes
</div>
</body>
</html>