Create index.html

This commit is contained in:
nune 2024-12-18 16:21:07 -05:00 committed by GitHub
parent 047442e429
commit fad6b05f9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

30
public/index.html Normal file
View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>plaster</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
text-align:center;
}
#output {
white-space: pre-wrap;
background: #f4f4f4;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
</style>
</head>
<body>
<h1>plaster</h1>
<input type="text" id="pasteUrl" placeholder="Enter Pastebin URL">
<button id="fetchBtn">fetch!</button>
<div id="output"></div>
<script src="client.js"></script>
</body>
</html>