-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
98 lines (97 loc) · 3.26 KB
/
home.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home | Jai Dugal</title>
<link rel="icon" type="image/x-icon" href="favicon logo J.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<button onclick="changeImage()" class="img1">
<img id="imgButton" src="Play.png" class="imgSound">
</button>
<audio id="bgMusic" loop autoplay>
<source src="BG-Music.mp3" type="audio/mpeg">
</audio>
<a href="home.html" class="home" style="background-color: white;
color: black;
border-radius: 30px;">Home</a>
<a href="About.html" class="about">About Me</a>
<a href="projects.html" class="proj">Projects</a>
<a href="https://twitter.com/lagoon_le"><img src="twitter.png" alt="twitter" class="twitter"></a>
<a href="https://www.artstation.com/lelagoon"><img src="artstation.png" alt="artstation" class="artstation"></a>
<a href="https://open.spotify.com/user/coglw7mqbo772v922wscvkj6b?si=0853b72388524cfa"><img src="spotify.png" alt="spotify" class="spotify"></a>
<a href="https://www.github.com/LeLagoon"><img src="github.png" alt="github" class="github"></a>
<a href="https://www.instagram.com/jai_dugal/"><img src="insta.png" alt="instagram" class="instagram"></a>
<a href="mailto:[email protected]"><img src="mail.png" alt="mail" class="mail"></a>
<a href="https://www.behance.net/jaidugal1"><img src="behance.png" alt="behance" class="behance"></a>
<p>Hello!</p>
<div class="container">
<h1>I am <span class="auto-type"></span></h1>
</div>
<div class="box">
<div class="content">
<img src="meowmeow.jpg" alt="My Photo" draggable="false">
</div>
</div>
<div id="tsparticles"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/tsparticles.slim.bundle.min.js"></script>
<script type="text/javascript">
const options = {
background: {
color: "#000",
},
interactivity: {
events: {
onClick: {
enable: true,
mode: "push",
},
onHover: {
enable: true,
mode: "repulse",
},
},
modes: {
push: {
quantity: 6,
},
repulse: {
distance: 100,
},
},
},
particles:
{
links: {
enable: true,
opacity: 0.3,
distance: 200,
},
move: {
enable: true,
speed: { min: 1, max: 3 },
},
opacity: {
value: { min: 0.3, max: 0.7 },
},
size: {
value: { min: 1, max: 3 },
},
},
};
tsParticles.load("tsparticles", options);
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
var typed = new Typed(".auto-type", {
strings: ["Jai Dugal", "a Designer", "a Crypter"],
typeSpeed: 150,
backSpeed: 100,
loop: true
})
</script>
<script src="music-controller.js"></script>
</body>
</html>