-
Notifications
You must be signed in to change notification settings - Fork 0
/
historico.html
80 lines (76 loc) · 2.36 KB
/
historico.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
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>Historico</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<link rel="stylesheet" href="css/style.css">
<style>
table{
width: 100%;
padding: 5px;
text-align: center;
}
</style>
</head>
<body>
<div id="fundo-externo">
<div id="fundo">
<img src="./img/basketball.jpg" alt="" class="foto">
<img src="./img/code.jpg" alt="" class="foto">
<img src="./img/fe.jpg" alt="" class="foto">
<img src="./img/music.jpg" alt="" class="foto">
<img src="./img/onePiece.jpg" alt="" class="foto">
</div>
</div>
<div id="conteudo">
<a href="index.html"><h1>Historico</h1></a>
<p>Minha carreira</p>
<nav id='menu'>
<ul>
<li><a href="historico.html">Historico</a></li>
<li><a href="contato.html">Contato</a></li>
<li><a href="interesses.html">Interesses</a></li>
<li><a href="redesSociais.html">Redes Sociais</a></li>
</ul>
</nav>
<section>
<h2>Experiência Profissional</h2>
<hr>
<div class="container">
<table>
<thead>
<tr>
<th>Local</th>
<th>Cargo</th>
<th>Tempo</th>
</tr>
</thead>
<tbody>
<tr>
<td>Escola de Músuca</td>
<td>Admistrativo</td>
<td>7 meses</td>
</tr>
<tr>
<td>UPA</td>
<td>Técnico de Enfermagem</td>
<td>1 ano e 4 meses</td>
</tr>
<tr>
<td>Hospital Cesar Cals</td>
<td>Agente Administrativo</td>
<td>1 ano e 8 meses</td>
</tr>
<tr>
<td>Softium</td>
<td>Teste de software</td>
<td>5 meses</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</body>
</html>