-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 971 Bytes
/
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
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="normalise.css">
<link rel="stylesheet" href="index.css">
<title>Back to Basics</title>
</head>
<body>
<div class="page-wrapper">
<header>
<h1>Back to basics</h1>
</header>
<main class="main-wrapper flex-column">
<p class="intro">Those are some small projects I decided to work on just to get back into pure HTML/CSS/Vanilla
JS, after an
extended time using react, typescript and styled components</p>
<div class="flex space-top">
<a href="./analog-clock/" class="card">Analog clock</a>
<a href="./html-editor/index.html" class="card">HTML Editor</a>
<a href="./todo-list/index.html" class="card">Todo List</a>
</div>
</main>
<footer>
<p>Made with ❤️ by Noj</p>
</footer>
</div>
</body>
</html>