-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 1 KB
/
index.html
File metadata and controls
49 lines (45 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cardano Calc</title>
<style>
html, body {
display: table;
position: absolute;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.middle {
display: table-cell;
vertical-align: middle;
}
.inner {
margin-left: auto;
margin-right: auto;
text-align: center;
width: 400px;
/*whatever width you want*/
}
#logo {
}
#title {
margin: 0;
margin-top: -20px;
margin-bottom: 20px;
margin-left: -45px;
font-size: 100px;
}
</style>
</head>
<body>
<div class="middle">
<div class="inner">
<img src="antipalos.png" width="300px" id="logo"/>
<h1 id="title">Αντίπαλος</h1>
</div>
</div>
</body>
</html>