blob: 18e53cbe7f1c2270fbb1b578057dbceb2bf3abe1 (
plain)
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
|
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Taamas - Artículos</title>
<link rel="stylesheet" type="text/css" href="../css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<h1>🗞️ Artículos 🗞️</h1>
</header>
<div class="navbar">
<a href="../index.html">Portada</a>
</div>
<section>
<p>
Aquí quedan los artículos que escribo cuando tengo alguna idea lo suficientemente larga y
compartible.
</p>
</section>
<ul>
<li><a href="whatsapp.html">Abandonando Whatsapp</a></li>
<li><a href="kyria.html">Kyria: Construyendo un teclado</a></li>
<li><a href="cubo.html">Mi cubo de Magic: the Gathering</a></li>
</ul>
</body>
</html>
|