24 lines
497 B
HTML
24 lines
497 B
HTML
<!DOCTYPE html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="css/app.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<section>
|
|
<h1><a href='https://codeberg.org/onezDerv/scratch-feed'>Scratch Feed</a></h1>
|
|
<h2>Users to follow</h2>
|
|
<textarea id='users'>User1
|
|
User2
|
|
...
|
|
</textarea>
|
|
<button id='submit'>Submit</button>
|
|
</section>
|
|
<section id='area-main'>
|
|
|
|
</section>
|
|
<script src='js/data.js'></script>
|
|
<script src='js/app.js'></script>
|
|
</body>
|