-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.4 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.4 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
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flowk | Links</title>
<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"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body class="theme-bg">
<main class="linktree">
<header class="profile">
<div class="avatar">F</div>
<h1>@tryflowk</h1>
<p>Meus principais projetos em um só lugar.</p>
</header>
<section class="links" aria-label="Links principais">
<a class="link-btn" href="https://github.com/tryflowk/calculadoradeblocos" target="_blank" rel="noopener noreferrer">
🧱 Calculadora de Blocos
</a>
<a class="link-btn" href="https://github.com/tryflowk/dia" target="_blank" rel="noopener noreferrer">
☀️ DIA
</a>
<a class="link-btn" href="https://github.com/tryflowk/verb" target="_blank" rel="noopener noreferrer">
🗣️ VERB
</a>
<a class="link-btn secondary" href="portfolio.html">
📂 Ver página com todos os projetos
</a>
</section>
</main>
</body>
</html>