mirror of
https://github.com/milk-net/milk-net.github.io.git
synced 2025-04-19 21:53:40 -05:00
Create index.html
This commit is contained in:
parent
eec838423e
commit
76d78ffbab
1 changed files with 28 additions and 0 deletions
28
board/index.html
Normal file
28
board/index.html
Normal 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>
|
Loading…
Add table
Reference in a new issue