-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
89 lines (72 loc) · 2.42 KB
/
Copy pathcontacts.html
File metadata and controls
89 lines (72 loc) · 2.42 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
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
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leandro Cardoso DEV</title>
<link rel="icon" type="image/png" href="./assets/images/favicon.png">
<link rel="stylesheet" href="./css/app.css">
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/footer.css">
<link rel="stylesheet" href="./css/contacts.css">
<link rel="stylesheet" href="./css/print.css" media="print">
</head>
<body>
<header id="header"></header>
<main class="content">
<h1>Contatos</h1>
<div class="contacts-content">
<ul>
<li>
<a href="https://wa.me/5522992399041" target="_blank">
<div>
<img src="./assets/images/social/whatsapp.svg" alt="WhatsApp">
<p>WhatsApp</p>
</div>
<p class="contact-value">(22) 99239-9041</p>
</a>
</li>
<li>
<a href="mailto:leandrocardosodev@gmail.com?subject=Portfolio" target="_blank">
<div>
<img src="./assets/images/social/mail.svg" alt="E-Mail">
<p>E-Mail</p>
</div>
<p class="contact-value">leandrocardosodev@gmail.com</p>
</a>
</li>
<li>
<a href="https://github.com/Leandro-Cardoso" target="_blank">
<div>
<img src="./assets/images/social/github.svg" alt="GitHub">
<p>GitHub</p>
</div>
<p class="contact-value">@Leandro-Cardoso</p>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/leandro-cardoso-992529266" target="_blank">
<div>
<img src="./assets/images/social/linkedin.svg" alt="LinkedIn">
<p>LinkedIn</p>
</div>
<p class="contact-value">@leandro-cardoso-992529266</p>
</a>
</li>
<li>
<a href="https://x.com/LeandroCDev" target="_blank">
<div>
<img src="./assets/images/social/x.svg" alt="X">
<p>X</p>
</div>
<p class="contact-value">@LeandroCDev</p>
</a>
</li>
</ul>
<img src="./assets/images/social500x500.png" alt="Redes Sociais" class="contacts-image">
</div>
</main>
<footer id="footer"></footer>
<script src="./js/app.js"></script>
</body>
</html>