forked from oficial-dazai/Linkzy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (28 loc) · 1.06 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linkzy</title>
<link rel="icon" href="assets/images/icon.svg" type="image/x-icon">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<div class="container">
<header>
<img id="profile-picture" alt="Foto de Perfil" class="profile-picture">
<h1 class="name">David</h1>
<p id="description" class="description"></p>
</header>
<main>
<nav class="links">
<a href="https://github.com/DavidMacalister" class="link">GitHub</a>
<a href="https://steamcommunity.com/id/davidmacalister/" class="link">Steam</a>
<a href="https://discord.com/users/746429873823678525" class="link">Discord</a>
<a href="https://discord.gg/tVNv6SNZZT" class="link">Comunidade</a>
</nav>
</main>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>