Spaces:
Running
Running
File size: 953 Bytes
1ecccdd d119467 1ecccdd d119467 1ecccdd d119467 1ecccdd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MDX Documentation</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #007bff;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Welcome to MDX Documentation</h1>
<p>Select a file to view:</p>
<ul>
<li><a href="1.mdx">View 1.mdx</a></li>
<li><a href="README.md">View README.md</a></li>
</ul>
</body>
</html>
|