blob: cdf2d743e698dc1a2d2358452c8183324c4cfd20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html {
line-height: 1.6;
font-family: monospace;
color: #1a1a1a;
background-color: #fdfdfd;
}
@media (prefers-color-scheme: dark){
body {color:white;background:black}
html {color:white;background:black}
a:link, a:visited { color: #aab9c1; }
a:hover, a:active { color: hotpink; } /* hotpink on hover */
}
</style>
<title>Title</title>
<pre>
<a href="/">Mohit Agarwal</a>
<a href="./paper.pdf">See this as a pdf</a>
|