Spaces:
Running
Running
Update index.html
Browse files- index.html +19 -3
index.html
CHANGED
|
@@ -4,11 +4,27 @@
|
|
| 4 |
<meta charset="utf-8" />
|
| 5 |
<title>My Paper</title>
|
| 6 |
<style>
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
</style>
|
| 10 |
</head>
|
| 11 |
<body>
|
| 12 |
-
<
|
|
|
|
|
|
|
|
|
|
| 13 |
</body>
|
| 14 |
</html>
|
|
|
|
| 4 |
<meta charset="utf-8" />
|
| 5 |
<title>My Paper</title>
|
| 6 |
<style>
|
| 7 |
+
body {
|
| 8 |
+
font-family: Arial, sans-serif;
|
| 9 |
+
max-width: 900px;
|
| 10 |
+
margin: 60px auto;
|
| 11 |
+
padding: 0 20px;
|
| 12 |
+
line-height: 1.6;
|
| 13 |
+
}
|
| 14 |
+
a.button {
|
| 15 |
+
display: inline-block;
|
| 16 |
+
padding: 12px 18px;
|
| 17 |
+
background: #222;
|
| 18 |
+
color: white;
|
| 19 |
+
text-decoration: none;
|
| 20 |
+
border-radius: 8px;
|
| 21 |
+
}
|
| 22 |
</style>
|
| 23 |
</head>
|
| 24 |
<body>
|
| 25 |
+
<h1>My Paper</h1>
|
| 26 |
+
<p>Open the PDF directly:</p>
|
| 27 |
+
<p><a class="button" href="_OpenENV_Blog__OpenRA_RL.pdf" target="_blank">Open PDF</a></p>
|
| 28 |
+
<p><a href="paper.pdf" download>Download PDF</a></p>
|
| 29 |
</body>
|
| 30 |
</html>
|