-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.97 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<meta name="theme-color" content="#010101" />
<link rel="stylesheet" href="static/style.css" />
<title>Luan Ramos Vicente • Web Developer</title>
</head>
<body class="wrapper" data-wrapper>
<svg
style="display: none"
aria-hidden="true"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<defs>
<symbol id="icon-contrast" viewBox="0 0 32 32">
<title>Light/Dark Mode</title>
<path
d="M16 0c-8.837 0-16 7.163-16 16s7.163 16 16 16 16-7.163 16-16-7.163-16-16-16zM4 16c0-6.627 5.373-12 12-12v24c-6.627 0-12-5.373-12-12z"
></path>
</symbol>
</defs>
</svg>
<div class="container">
<header class="main-header">
<span data-icon-contrast>
<svg class="icon-contrast">
<use xlink:href="#icon-contrast"></use>
</svg>
</span>
<h1 class="title">Luan Ramos Vicente</h1>
</header>
<main class="main-content">
<p class="description">
Craft meaningful web experiences that helps people reach their objectives or simplify their lives is what I've been learning and doing for the past 6+ years.
</p>
</main>
<footer class="main-footer">
<p class="social-networks">
<a class="link" href="mailto:luanrv00@gmail.com">E-mail</a><span class="smoke">/</span>
<a class="link" href="https://www.linkedin.com/in/luanrvmood" />LinkedIn</a><span class="smoke">/</span>
<a class="link" href="https://github.com/luanrv00">GitHub</a><span class="smoke">/</span>
<a class="link" href="assets/curriculum.pdf">Resume</a>
</p>
<p class="copyright">© 2026</p>
</footer>
</div>
<script src="assets/contrast.js"></script>
</body>
</html>