android_hosting_tutorials/little_website/public/index.html
2025-07-29 02:23:10 +02:00

23 lines
604 B
HTML

<!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>