Spaces:
Running
Running
Update index.html
Browse files- index.html +19 -8
index.html
CHANGED
|
@@ -1,21 +1,32 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
-
<meta charset="UTF-8"
|
| 5 |
<title>EthosBridge</title>
|
| 6 |
<style>
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
margin: 0;
|
|
|
|
| 10 |
}
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
}
|
| 16 |
</style>
|
| 17 |
</head>
|
| 18 |
<body>
|
| 19 |
-
<
|
| 20 |
</body>
|
| 21 |
</html>
|
|
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
<title>EthosBridge</title>
|
| 6 |
<style>
|
| 7 |
+
body {
|
| 8 |
+
font-family: sans-serif;
|
| 9 |
+
display: flex;
|
| 10 |
+
justify-content: center;
|
| 11 |
+
align-items: center;
|
| 12 |
+
height: 100vh;
|
| 13 |
margin: 0;
|
| 14 |
+
background: #f5f5f5;
|
| 15 |
}
|
| 16 |
+
a {
|
| 17 |
+
font-size: 1.5em;
|
| 18 |
+
padding: 1em 2em;
|
| 19 |
+
background: #004080;
|
| 20 |
+
color: white;
|
| 21 |
+
text-decoration: none;
|
| 22 |
+
border-radius: 8px;
|
| 23 |
+
}
|
| 24 |
+
a:hover {
|
| 25 |
+
background: #002855;
|
| 26 |
}
|
| 27 |
</style>
|
| 28 |
</head>
|
| 29 |
<body>
|
| 30 |
+
<a href="EthosBridge2025.pdf" target="_blank">Open EthosBridge PDF</a>
|
| 31 |
</body>
|
| 32 |
</html>
|