-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 2.03 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Links | Matheus Costa</title>
<link rel="icon" href="assets/images/matheus.jpeg">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body class="main-bg">
<div class="box-img">
<img class="profile" src="assets/images/matheus.jpeg" alt="Foto perfil Matheus Costa">
</div>
<br>
<p class="name">@Matheus-S-Costaa</p>
<div class="tema">
<label class="switch" for="theme">
<div class="switch-wrapper">
<input
class="input"
type="checkbox"
name="theme"
id="theme"
/>
<span class="switch-button"></span>
</div>
</label>
</div>
<ul>
<li>
<a href="https://myportfoliomsc.netlify.app/" target="_blank"><img class="logo" src="assets/images/list.svg" alt="">Portfólio</a>
</li>
<li>
<a href="https://www.linkedin.com/in/matheus-s-costaa/" target="_blank"><img class="logo" src="assets/images/linkedin-logo.svg" alt="">Linkedin</a>
</li>
<li>
<a class="gt" href="https://github.com/Matheus-S-Costa" target="_blank"><img class="logo" src="assets/images/github-logo.svg" alt="">Github</a>
</li>
<li>
<a class="ig" href="https://instagram.com/matheus_s_costaa?igshid=OGQ5ZDc2ODk2ZA==" target="_blank"><img class="logo" src="assets/images/instagram-logo.svg" alt=""> Instagram</a>
</li>
</ul>
<footer class="footer">
<p>Matheus Costa ©️ 2025</p>
</footer>
<script src="app.js"></script>
</body>
</html>