-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 1.13 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.15.4/js/all.js" integrity="sha384-rOA1PnstxnOBLzCLMcre8ybwbTmemjzdNlILg8O7z1lUkLXozs4DHonlDtnE7fpc" crossorigin="anonymous"></script>
<title>Links</title>
</head>
<body>
<noscript>Por favor activa el JavaScript! / Please enable JavaScript!</noscript>
<div class="flex flex-col items-center justify-center mt-5">
<img id="icon" alt="" class="w-32 h-32 rounded-full">
<p class="mt-3 text-2xl font-bold" id="name"></p>
<p class="mt-3 text-sm" id="desc"></p>
<div id="links" class="flex flex-row items-center text-white mt-5"></div>
<div id="projects" class="flex flex-col items-center text-white mt-5 w-full max-w-xl"></div>
</div>
<script src="index.js"></script>
</body>
</html>