-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
48 lines (46 loc) · 1.4 KB
/
contact.html
File metadata and controls
48 lines (46 loc) · 1.4 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
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contato - Meu Blog Pessoal</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<div class="container">
<h1>BLOG STAY OFF EFFECT</h1>
<nav>
<ul>
<li><a href="index.html">Início</a></li>
<li><a href="sobre.html">Sobre</a></li>
<li><a href="contato.html">Contato</a></li>
</ul>
</nav>
</div>
</header>
<section class="container">
<h2>Entre em Contato</h2>
<p>
<li><a href="https://linktr.ee/ravihennanks">LinkTree</a></li>
<li><a href="https://github.com/HennanRavi">Github</a></li>
<li>
<a href="https://www.linkedin.com/in/hennan-ravi-8b13622b7/"
>LinkedIn</a
>
</li>
<li>
<a
href="https://api.whatsapp.com/send?phone=5587991675203&text=Ol%C3%A1,%20eu%20vim%20pelo%20link%20que%20tem%20no%20seu%20blog.%0A(Caso%20tenha%20vindo%20por%20outra%20fonte%20de%20compartilhamento%20apenas%20apague%20essa%20mensagem.)"
>WhatsApp</a
>
</li>
</p>
</section>
<footer>
<div class="container">
<p>© 2024 BLOG STAY OFF EFFECT</p>
</div>
</footer>
</body>
</html>