little website

This commit is contained in:
Crizomb 2025-07-29 02:23:10 +02:00
parent 4d14982e38
commit 2e6f697a69
8 changed files with 201 additions and 0 deletions

View file

@ -0,0 +1,23 @@
<!DOCTYPE <html>
<head>
<meta charset="UTF-8" />
<title>Hosted on my phone btw</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Hosted on a phone from 2016 btw</h1>
<div id="battery-status">Loading battery status...</div>
<h1>Leave an anonymous message</h1>
<form id="msgForm">
<textarea id="message" rows="4" cols="40" maxlength="1000" placeholder="Your message..."></textarea><br>
<button type="submit">Send</button>
</form>
<h2>Recent Messages</h2>
<ul id="messages"></ul>
<script type="text/javascript" src="script.js"></script>
</body>
</html>