Spaces:
Running
Running
<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> | |