Spaces:
Running
Running
File size: 946 Bytes
dc6917a 31fdd4e 89c2f80 31fdd4e dc6917a 3705ef3 dc6917a 65839f1 3705ef3 dc6917a |
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 |
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My static Space</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<h1>Welcome to my Space!</h1>
<p>It contains fun stuff that I build during my journey to learn full stack web application development.</p>
</main>
<div class="card">
<p>The first Javascript app that I build. A <a href="./number-game/index.html">Number guessing game</a>.</p>
</div>
<div class="card">
<p>Build this simple <a href="./draw-web-worker/index.html">shape drawing app</a> while learning about Web Worker API.</p>
</div>
<div class="card">
<p>A <a href="./simple-notes/index.html">Simple Notes application</a> using IndexedDB.
IndexedDB is a mini database stored on the client side.</p>
</div>
</body>
</html>
|