PolymathAtti commited on
Commit
0f31eb9
·
verified ·
1 Parent(s): 1f1e284

Update index.html

Browse files
Files changed (1) hide show
  1. 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
- html, body {
8
- height: 100%;
 
 
 
 
9
  margin: 0;
 
10
  }
11
- iframe {
12
- width: 100%;
13
- height: 100%;
14
- border: none;
 
 
 
 
 
 
15
  }
16
  </style>
17
  </head>
18
  <body>
19
- <iframe src="/EthosBridge2025.pdf"></iframe>
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>