-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (90 loc) · 2.25 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<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" />
<!-- <link rel="stylesheet" href="style.css" /> -->
<title>CatoTV</title>
<style>
@font-face {
font-family: "Font";
src: url("assets/fonts/medium.ttf");
}
*,
html,
body {
padding: 0;
margin: 0;
color: #505050;
}
body {
font-family: "Font";
font-size: 1.2rem;
}
.container {
max-width: 960px;
width: 100%;
width: calc(100% - 1rem);
margin: 1rem auto;
}
.container > div {
margin-bottom: 1rem;
}
img {
width: 100%;
height: auto;
}
li {
margin-left: 1.5rem;
}
.footer {
padding: 1rem 0;
text-align: center;
border-top: 1px solid #9dafb5;
}
.playstore {
width: 8rem;
text-align: center;
}
.playstore-wrapper {
display: flex;
align-items: center;
justify-content: center;
margin: 1rem 0;
}
</style>
</head>
<body>
<main class="container">
<div class="greeting">👋 Hi Mohan!</div>
<div class="poster">
<img
src="https://raw.githubusercontent.com/catoverse/cato-email-invite/main/assets/images/Main.svg"
alt="cato-invite-poster"
/>
</div>
<div class="steps">
Here’s how you can get started:
<ol>
<li>Download the app from playstore</li>
<li>Login with your registered email</li>
<li>Get ready to binge-learn 🎉</li>
</ol>
<a
class="playstore-wrapper"
href="https://play.google.com/store/apps/details?id=cato.tv.app"
>
<img
class="playstore"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/78/Google_Play_Store_badge_EN.svg/2560px-Google_Play_Store_badge_EN.svg.png"
alt=""
/>
</a>
</div>
<div class="footer">
<p>Sent with ♥ from Navgurukul</p>
</div>
</main>
</body>
</html>