This repository has been archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (75 loc) · 1.71 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
<html>
<style>
<title>webpage</title>
<style>
h1{
text-align: left;
}
</style>
<body>
<h1>Video Streaming</h1>
</body>
<style>
body, html {
height: 100%;
margin: 0;
}
.bg {
/* The image used */
background-image: url("download.jpg");
height: 100%;
/* Center and scale the image nicely */
/*background-position: center;*/
background-repeat: repeat;
/*background-size: cover;*/
}
.center {
width: 8rem;
height: 3rem;
background: rgb(255, 231, 18);
border-radius: 1.2rem;
color: #da1c1c;
animation-name: example;
animation-duration: 6s;
border: 3px solid #e2d6d6;
position: absolute;
top: 50%;
left: 50%;
}
/* .center1 {
width: 8rem;
height: 3rem;
background: rgb(255, 231, 18);
border-radius: 1.2rem;
color: #da1c1c;
animation-name: example;
animation-duration: 6s;
border: 3px solid #e2d6d6;
position: absolute;
top: 90%;
left: 50%;
}
*/
.center:hover {
transform: scale(1.9);
transition-duration: 350ms;
background:#ffb703;
color:white;
}
/*.center1:hover {
transform: scale(1.9);
transition-duration: 350ms;
background:#ffb703;
color:white;
}*/
</style>
<div class="bg"></div>
<button class="center"
onclick="window.location.href = 'https://youtu.be/rOGCLvjwxB4';">
Get Started ->
</button>
<div class="loader" id="loader"></div>
</div>
<div class="footer">
</div>
</html>