Files
unibo-ai-notes/.github/web-viewer/index.html
2024-05-30 10:07:30 +02:00

35 lines
691 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
font-family: monospace, monospace;
}
@media (prefers-color-scheme: light) {
* {
color: black;
background-color: white;
}
}
@media (prefers-color-scheme: dark) {
* {
color: white;
background-color: #292929;
}
}
</style>
</head>
<body>
<h1>Table of contents</h1>
<!-- begin-toc -->
<!-- end-toc -->
</body>
</html>