-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (50 loc) · 1.85 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
57
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gui Cardoso - Digital Business Card</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body class="">
<div class="container">
<img
class="avatar"
src="https://github.com/CardosoGuiVi.png"
alt="Profile picture: Guilherme Cardoso">
<h1>Guilherme Cardoso</h1>
<p class="subtitle">My digital business card :)</p>
<ul>
<li>
<a
href="https://www.linkedin.com/in/gvcardoso/"
target="_blank"><i class="fa-brands fa-linkedin"></i> LinkedIn</a>
</li>
<li>
<a
href="https://www.instagram.com/guicardosooo/"
target="_blank"><i class="fa-brands fa-instagram"> </i>Instagram</a>
</li>
<li>
<a
href="https://github.com/CardosoGuiVi"
target="_blank"><i class="fa-brands fa-github"></i> Gitbub</a>
</li>
</ul>
<footer>Made with <i class="fa-solid fa-heart"></i> by
<a
href="https://www.linkedin.com/in/gvcardoso/"
target="_blank">Guilherme Cardoso</a>
</footer>
<label class="switch">
<input type="checkbox" onclick="toggleDarkMode()">
<span class="slider round"></span>
</label>
<script src="https://kit.fontawesome.com/9dabb0ed4f.js" crossorigin="anonymous"></script>
<script src="./js/sripts.js"></script>
</div>
</body>
</html>