Initial commit

This commit is contained in:
Ward Truyen
2024-09-21 16:19:56 +02:00
commit 27f0d4e1ba
37 changed files with 3833 additions and 0 deletions

45
src/index.html Normal file
View File

@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>
<head>
<title>WTerminal home</title>
<link rel="stylesheet" href="css/main.css" />
<!-- <link rel="stylesheet" href="css/wterminal.css" /> -->
<script src="js/theme.js"></script>
</head>
<body>
<header>
<button style="float: right;" title="Dark theme on/off" onclick="toggleTheme();">&#9728;</button>
<a href="index.html">Home</a>
<a href="static-terminal.html">Static</a>
<a href="dropdown.html">Dropdown</a>
<a href="pong.html">Pong</a>
<a href="addon.html">Addon</a>
</header>
<main>
<h1>WTerminal home:</h1>
<pre>* _ . _ _____ .----..----. .-. .-..-..-. .-. .--. .-.
* | |/ \| |[_ _]| {__ | {) }| .`-'. ||~|| .`| | / {} \ | |
* | ,-, | | | | {__ | .-. \| |\ /| || || |\ |/ /\ \| `--.
* '-' `-' '-' `----'`-' `-'`-' ` `-'`-'`-' `-'`-' `-'`----'
For terminal fun on the web.</pre>
<p>The following pages show multiple ways that this terminal can be used.</p>
<h2>Pages:</h2>
<a href="static-terminal.html">Static terminal</a><br>
<a href="dropdown.html">Dropdown terminal</a><br>
<a href="pong.html">Ping pong game + dropdown terminal</a><br>
<a href="addon.html">Browser addon</a><br>
<h2>Testing:</h2>
<a href="/test/">terminal testing</a><br>
</main>
<footer>
<p class="float-right">Author: Ward Truyen</p>
</footer>
</body>
</html>