-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (68 loc) · 2.22 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!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>Casos de estudo</title>
<!-- ## cdn files ## -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<!-- ## custom ## -->
<link rel="stylesheet" href="assets/css/style.css">
<script src="assets/javascript/main.js" defer="defer"></script>
</head>
<body>
<div class="contain">
<h3 class="row title">
Portfólio de estudo
</h3>
<div class="row social">
<a
href="https://www.viniciuscosmo.me/"
target="_blank"
rel="noreferrer"
class="social-link"
tooltip="www.viniciuscosmo.me">
<i class="bi bi-globe2 social-icon"></i>
<span>
Meu site
</span>
</a>
<a
href="https://github.com/viniciuscosmome"
target="_blank"
rel="noreferrer"
class="social-link"
tooltip="@viniciuscosmome">
<i class="bi bi-github social-icon"></i>
<span>
GitHub
</span>
</a>
<a
href="https://www.instagram.com/viniciuscosmome"
target="_blank"
rel="noreferrer"
class="social-link"
tooltip="@viniciuscosmome">
<i class="bi bi-instagram social-icon"></i>
<span>
instagram
</span>
</a>
<a
href="https://www.linkedin.com/in/vinicius-cosmo-me"
target="_blank"
rel="noreferrer"
class="social-link"
tooltip="@vinicius-cosmo-me">
<i class="bi bi-linkedin social-icon"></i>
<span>
LinkedIn
</span>
</a>
</div>
<main id="main" class="grid"></main>
</div>
</body>
</html>