forked from cuhacking/idle-animation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (25 loc) · 812 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>cuHacking</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A website for presenting cuHacking's logo." />
<link rel="icon" href="assets/favicon.ico" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div id="root">
<!-- background layers -->
<div id="bkg"></div>
<div id="dots"></div>
<!-- particles container -->
<div id="particles-js"></div>
<!-- scripts -->
<script src="js/lib/particles.min.js"></script>
<script src="js/app.js"></script>
<!-- cuHacking logo -->
<img id="logo" src="assets/word-logo-white.svg" alt="cuHacking" />
</div>
</body>
</html>