Upload files to "/"

This commit is contained in:
batvin321 2025-02-24 14:14:00 -05:00
parent 0925e9c85d
commit 598fc772b8

44
index.html Normal file
View File

@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Markdown to Essay Fromater</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 20px;
}
h1 {
color: #2c3e50;
text-align: center;
margin-bottom: 20px;
}
a {
color: #3498db;
text-decoration: none;
margin: 20px 0;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
}
a:hover {
background-color: #4bd672;
border: 1px solid #3498db;
}
</style>
</head><body>
<h1>Markdown to Essay Fromater</h1>
<a href="mla/index.html" target="_blank" class="text-red-500 hover:text-red-600">
MLA Formatter:
</a>
<a href="apa/index.html" target="_blank" class="text-red-500 hover:text-red-600">
APA Formatter:
</a>
</body>
</html>