I design JavaScript apps and games! Sometimes they are remakes of old DOS or BASIC games, other times they are my own creation! I use JavaScript because it is both phone and Linux friendly, and it is really just a blast to make something I can use or play.
d6 Dice Roller RPG Calculator Scribe
CIA Text Adventure Spy Hunt Treasure Hunt Invested
Most of my projects are developed as Single Page Applications
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML5 Boilerplate</title>
<style type="text/css">
/* CSS HERE */
</style>
</head>
<body>
<h1>Page Title</h1>
<script>
// App here
const app = {
get: function (id_in) {
return document.getElementById(id_in);
},
init: function () {
}
};
app.init();
</script>
</body>
</html>