-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (60 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IntelliTEDx</title>
<link rel="stylesheet" href="wwwroot/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="wwwroot/css/site.css" asp-append-version="true" />
<script src="wwwroot/js/components.js"></script>
</head>
<body>
<header>
</header>
<div class="container">
<main role="main" class="pb-3">
<div class="text-center pt-3">
<div><img src="wwwroot/assets/IntellitedxLogo.png" class="rounded-circle shadow-lg"style="width: 10rem;" /></div>
<h1 class="display-4 text-white">IntelliTEDx</h1>
<p class="text-white">Get ready to be inspired Thursday February 8th 4:00-6:00pm at the Intellitect office</p>
<button class="btn btn-light"><a href="https://forms.office.com/r/wjejJrSCLT" target="_blank">Sign up to speak here!</a></button>
</div>
<div class="text-center pt-3" id="speakers-container"></div>
</main>
</div>
<footer class="border-top bg-white footer text-muted mt-6">
<div class="container">
© 2024 - IntelliTEDx
</div>
</footer>
<script src="wwwroot/lib/jquery/dist/jquery.min.js"></script>
<script src="wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="wwwroot/js/site.js" asp-append-version="true"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
<script>
document.addEventListener("click", shoot);
var defaults = {
spread: 360,
ticks: 50,
gravity: 0,
decay: 0.94,
startVelocity: 30,
colors: ['FFE400', 'FFBD00', 'E89400', 'FFCA6C', 'FDFFB8']
};
function shoot() {
confetti({
defaults,
particleCount: 40,
scalar: 1.2,
shapes: ['star']
});
confetti({
defaults,
particleCount: 10,
scalar: 0.75,
shapes: ['circle']
});
}
</script>
</body>
</html>