-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (75 loc) · 1.98 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html>
<head>
<title>developlace</title>
<link rel="shortcut icon" type="image/png" href="https://i.imgur.com/BGmRcsH.png"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<style>
.background{
background-color: #141922;
}
.logo{
width: 200px;
height: 200px;
position: fixed;
top: 50%;
left: 50%;
margin-left: -289px;
margin-top: -87px;
display: inline-block;
}
.text{
font-size: 64px;
position: fixed;
top: 50%;
left: 50%;
margin-top: -43px;
color: #03a9f4;
display: inline-block;
margin-left: -69px;
font-style: bold;
}
.buttonblue{
padding-left: 20px;
padding-right: 20px;
padding-top: 5px;
padding-bottom: 5px;
background-color: #03a9f4;
color: #242e3d;
top: 50%;
left: 50%;
margin-left: 100px;
margin-top: 60px;
position: fixed;
border-radius: 20px;
display: inline-block;
}
.buttonblue:hover{
background-color: #0196d9;
}
.buttonwhite{
padding-left: 20px;
padding-right: 20px;
padding-top: 5px;
padding-bottom: 5px;
background-color: #ffffff;
color: #03a9f4;
top: 50%;
left: 50%;
margin-left: 210px;
margin-top: 60px;
position: fixed;
border-radius: 20px;
display: inline-block;
}
.buttonwhite:hover{
background-color: #dadada;
}
</style>
</head>
<body class="background">
<img src="https://i.imgur.com/BGmRcsH.png" class="logo">
<div class="text font-weight-bold">developlace</div>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ"><div class="buttonblue font-weight-normal">DONATE</div></a>
<a href="https://discord.gg/Fprsyxz"><div class="buttonwhite font-weight-normal">JOIN</div></a>
</body>
</html>