Create index.html

This commit is contained in:
Voxel 2025-04-15 18:18:49 -04:00 committed by GitHub
parent eec838423e
commit 76d78ffbab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

28
board/index.html Normal file
View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MilkBoard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>MilkBoard</h1>
<div id="user-info">
<p>Welcome, <span id="username"></span></p>
</div>
<form id="post-form">
<textarea id="post-content" placeholder="Yap here..." required></textarea>
<button type="submit">Post</button>
</form>
<div id="posts-section">
<!-- Posts will appear here -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>