-
Notifications
You must be signed in to change notification settings - Fork 0
/
Team.html
93 lines (85 loc) · 4.19 KB
/
Team.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://unpkg.com/scrollreveal"></script>
<title>Team Registration</title>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<style>
html {
scroll-behavior: smooth;
overflow-x: hidden;
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
}
::-webkit-scrollbar {
display: none;
}
body {
background-color: aliceblue;
}
</style>
</head>
<body>
<!-- background -->
<div style="z-index: -1; position:fixed; top:0;left:0;width:15%;height:auto;">
<lottie-player src="https://assets9.lottiefiles.com/private_files/lf30_WdTEui.json" mode="bounce"
background="transparent" speed="1" loop autoplay></lottie-player>
</div>
<div style="z-index: -1; position:fixed; top:50vh;right:0;">
<img style="width:50px;transform: rotate(-20deg);" src="images/gamepad.svg">
</div>
<div style="z-index: -1; position:fixed; top:0vh;right:0;width:15%;height:auto;">
<lottie-player src="https://assets4.lottiefiles.com/packages/lf20_9OQ4nR.json" background="transparent"
speed="1" loop autoplay></lottie-player>
</div>
<div style="z-index: -1; position:fixed; top:50vh;left:0;">
<img style="width:50px;transform: rotate(20deg);" src="images/idea.png">
</div>
<div style="z-index: -1; position:fixed; top:50vh;left:6vw;">
<img style="width:50px;transform: rotate(-20deg);" src="images/coding.png">
</div>
<div style="z-index: -1; position:fixed; top:60vh;left:4vw;">
<img style="width:50px;transform: rotate(20deg);" src="images/cloud-computing.png">
</div>
<div style="z-index: -1; position:fixed; top:75vh;left:2vw;">
<img style="width:50px;transform: rotate(-20deg);" src="images/network.svg">
</div>
<div style="z-index: -1; position:fixed; top:65vh;left:9vw;">
<img style="width:50px;transform: rotate(20deg);" src="images/smartphone.png">
</div>
<div style="z-index: -1; position:fixed; top:50vh;right:6vw;">
<img style="width:50px;transform: rotate(-20deg);" src="images/hard-disk.svg">
</div>
<div style="z-index: -1; position:fixed; top:60vh;right:4vw;">
<img style="width:50px;transform: rotate(20deg);" src="images/laptop.svg">
</div>
<div style="z-index: -1; position:fixed; top:75vh;right:2vw;">
<img style="width:50px;transform: rotate(-20deg);" src="images/microphone.svg">
</div>
<div style="z-index: -1; position:fixed; top:65vh;right:9vw;">
<img style="width:50px;transform: rotate(20deg);" src="images/shortcut.svg">
</div>
<iframe style="height:100vh; width:100vw; display: block; border-style:dashed; margin: 0 auto;"
src="https://docs.google.com/forms/d/e/1FAIpQLSevgYZlY5kI2TqOVd-Svi-LyZtp4xxmq0O13AJv4kplYe87WA/viewform?embedded=true"
frameborder="0">Loading…</iframe>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.js"
integrity="sha512-WNLxfP/8cVYL9sj8Jnp6et0BkubLP31jhTG9vhL/F5uEZmg5wEzKoXp1kJslzPQWwPT1eyMiSxlKCgzHLOTOTQ=="
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous">
</script>
</body>
</html>