my-course-docs / index.html
Ajeya95's picture
Update index.html
d119467 verified
raw
history blame contribute delete
953 Bytes
<!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>