-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (74 loc) · 2.81 KB
/
index.html
File metadata and controls
82 lines (74 loc) · 2.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Luis Calleja">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Navigate between different projects">
<meta property="og:title" content="Projects Navigator">
<meta property="og:description" content="Navigate between different projects">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<title>Menu - Projects Navigator</title>
</head>
<body>
<header>
<h1>Projects Navigator</h1>
<h2>note: This page is a lightweight index of static frontend practices</h2>
</header>
<main>
<nav class="projects-navigation" aria-label="frontend practices">
<ul class="projects">
<li class="card">
<a href="./usd-to-ars/">
<h3>USD to ARS</h3>
<p>Currency converter with current values.</p>
</a>
</li>
<li class="card">
<a href="./shopping-list/">
<h3>Shopping list (example version)</h3>
<p>List tool with automatic calculation.</p>
</a>
</li>
<li class="card">
<a href="./school-simulator/">
<h3>School Simulator</h3>
<p>Fetch-based data viewer.</p>
</a>
</li>
<li class="card">
<a href="./irregular-verbs-js/">
<h3>Irregular Verbs</h3>
<p>Practice of irregular verbs.</p>
</a>
</li>
<li class="card">
<a href="./rock-paper-scissors/">
<h3>Rock, papers, scissors</h3>
<p>Classic game simulation.</p>
</a>
</li>
<li class="card">
<a href="./TO-DO/">
<h3>TO-DO app list</h3>
<p>Simple tasks manager app.</p>
</a>
</li>
<li class="card">
<a href="./card-generator/">
<h3>Card generator</h3>
<p>Create your custom cards.</p>
</a>
</li>
<li class="card">
<a href="./button-counter/">
<h3>Button-counter</h3>
<p>Counter using basic control buttons.</p>
</a>
</li>
</ul>
</nav>
</main>
</body>
</html>