-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="UGAHacks is a 501 (c)(3) organization that hosts an annual 48-hour programming hackathon that takes place in Athens, Georgia at the University of Georgia."
/>
<title>Makeathon 2 Teaser</title>
</head>
<body>
<div class="canvas-container">
<div id="bg"></div>
<div class="hero">
<img
class="logo"
src="/makeathon white transparent.png"
alt="makeathon 2 logo"
/>
<h1>site under construction // coming october 2023</h1>
<div class="social"></div>
</div>
</div>
<link rel="stylesheet" href="style.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/vendor/three.r134.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vanta.waves.min.js"></script>
<script type="text/javascript">
VANTA.WAVES({
el: "#bg",
mouseControls: false,
touchControls: false,
gyroControls: false,
minHeight: 200.0,
minWidth: 200.0,
scale: 1.0,
scaleMobile: 1.0,
color: 0xd0e22,
shininess: 0.0,
waveHeight: 22.0,
waveSpeed: 1.1,
zoom: 0.65,
});
</script>
</body>
</html>