-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.html
51 lines (46 loc) · 1.24 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<link rel="stylesheet" href="style1.css">-->
<title>Document</title>
<style>
*
{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#particles-js
{
height: 100vh;
width: 100%;
background-color: #000;
background-color: rgb(0, 0, 0);
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
position: fixed;
top: 0px;
left: 0px;
z-index: 1;
}
h1{
position:absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
font-size: 80px;
color: white;
}
</style>
</head>
<body>
<div id="particles-js"></div>
<h1>Rahul Patel</h1>
<script type="text/javascript" src="particles.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>