-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 999 Bytes
/
index.html
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
50
51
52
53
54
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The epispot organization</title>
</head>
<style>
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: white;
}
h1 {
position: relative;
margin-left: 25%;
margin-top: 25%;
margin-bottom: 0px;
width: 50%;
text-align: left;
font-family: Arial, Helvetica, sans-serif;
font-size: 50px;
font-weight: bold;
color: black;
}
button {
position: relative;
margin-left: 25%;
margin-top: 50px;
appearance: none;
border: none;
border-radius: 25px;
width: 50%;
padding: 25px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
font-weight: bold;
background-color: #0077ff;
color: white;
}
</style>
<body>
<h1>The epispot organization</h1>
<a href="/epispot"><button>Go to docs →</button></a>
</body>
</html>