-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (42 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Invite Link Generator</title>
<style>
.responsive-box {
padding: 2%;
border-radius: 20px;
background-color: rgb(235, 247, 251);
width: 30%;
}
@media (max-width: 768px) {
.responsive-box {
width: 90%;
}
}
</style>
</head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&display=swap" rel="stylesheet">
<body style="background-image: url('./assets/bg.png'); background-size: cover;
font-family:'Quicksand'; margin-top:15%;">
<center style="display: flex; align-items:center; justify-content:center" >
<div class="responsive-box">
<h1>Join us & Get <br/> Your Slack Invitation</h1>
<p >
Did you install <a href="https://slack.com/downloads" style="color: #F978DE;"> <span style="color: #F978DE; font-weight:bold"> Slack </span> </a> ?
</p>
<div style="display: flex; justify-content:space-evenly; margin-top: 40px">
<button style="padding: 12px; background-color:rgb(238, 255, 254); border-color:black; color:black;
font-weight:bold; border-radius: 10px;" type="botton" onclick="window.location.href='https://slack.com/downloads';">No, i didn't :(</button>
<button style="padding: 12px; background-color:#F978DE;
border:none; color:white; font-weight:800; border-radius: 10px;" type="button"
onclick="window.location.href='forms.html';"">Yes, i did !</button>
</div>
</div>
</center>
</body>
</html>