-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.html
60 lines (56 loc) · 1.59 KB
/
contato.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
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<title>Contato</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>Contato</h1></a>
<p>Meios para se comunicarem</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>
<hr>
<section>
<table>
<thead>
<tr>
<th>Telefone</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>(85) 99999-9999</td>
<td>[email protected]</td>
</tr>
</tbody>
</table>
</section>
</div>
</body>
</html>