-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloating Spider.html
More file actions
53 lines (40 loc) · 877 Bytes
/
floating Spider.html
File metadata and controls
53 lines (40 loc) · 877 Bytes
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
<!--DOCTYPE html>
<html>
<head>
<title>Floating Spider</title>
<script src="//cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="app.js"></script>
<style>
#particles-js {
background: cornflowerblue;
}
</style>
</head>
<body>
<img src="darkbg.png" alt="Floating Spider">
<div id="particles-js"></div>
particlesJS();
<li><a href="http://vincentgarreau.com/particles.js/" target="_blank">particles.js</a></li>
</body>
</html>-->
<!DOCTYPE html>
<html>
<head>
<title>Floating Spider</title>
<style>
body{
margin: 0px;
padding: 0px;
height:100vh;
}
#particles-js{
height:100%;
background-color: #262626;
}
</style>
</head>
<body>
<div id="particles-js"></div>
<script type="text/javascript" src="particles.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>