-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (72 loc) · 3.41 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
77
78
79
80
81
82
83
84
85
<!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">
<!-- URL Project -->
<link rel="canonical" href=""/>
<!-- Description Project -->
<meta name="author" content="Lucas Eduardo de Oliveira Santos">
<meta name="description" content="Sistema básico mantenedor de links pessoais.">
<!-- Import Favicon -->
<link rel="shortcut icon" href="assets/images/logo.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/styles.min.css" />
<title>Contacts</title>
<!-- if javascript is disabled, this content will appear -->
<noscript>
<style type="text/css">
body main{
display: none;
}
.javascript__disabled{
display: flex;
width: 100%;
height: 100vh;
justify-content: center;
align-items: center;
font-size: 22px;
background-color: #0B0418;
color: #8f8f8f;
}
</style>
<div class="javascript__disabled">
JavaScript disabled, please enable it for the system to work properly!
</div>
</noscript>
</head>
<body>
<div class="card">
<div class="card-header">
<div class="toggle">
<input id="checkbox" type="checkbox" name="theme">
</div>
<img src="https://github.com/LucasSantus.png" class="image" alt="Imagem do Lucas Santos" />
<h1 class="name">Lucas Santos</h1>
<p class="username">@lucassantus</p>
</div>
<div class="card-content">
<ul class="list-links">
<li><a class="list-item" href="https://lucassantus-portfolio.netlify.app/" target="_blank">👩💻 <span>Portifólio</span></a></li>
<li><a class="list-item" href="https://www.linkedin.com/in/lucas-santus/" target="_blank">📹 <span>Linkedin</span></a></li>
<li><a class="list-item" href="https://github.com/LucasSantus" target="_blank">🐱 <span>Github</span></a></li>
</ul>
</div>
<div class="card-footer">
<footer>Feito com 💜 por
LucasSantus
</footer>
</div>
</div>
<!-- SCRIPTS JS -->
<script src="./assets/js/scripts.min.js"></script>
<!-- disabled Context Menu on pages -->
<script>
document.addEventListener('contextmenu', event => event.preventDefault());
</script>
</body>
</html>