Files
unibo-ai-notes/.github/web-viewer/index.html

39 lines
927 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="0"/>
<title>M.Sc. AI notes</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>Unibo Master's degree in AI - Notes</h1>
<h2>Table of contents</h2>
<!-- begin-toc -->
<!-- end-toc -->
</body>
</html>