-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
74 lines (73 loc) · 2.44 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Me | 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">Home</a>
<a href="About.html" class="about" style="background-color: white;
color: black;
border-radius: 30px;">About Me</a>
<a href="projects.html" class="proj">Projects</a>
<p class="aboutcontent">Hello! My name is Jai Dugal. I am a high school student and a member of my school's tech club, <a href="https://techsyndicate.us/" class="AboutLinks">Tech Syndicate</a>. Currently, I am well versed with <a href="https://www.artstation.com/lelagoon" class="AboutLinks"> 3D Modelling</a> and I am on my school's Cryptography Team. Along with that, I am learning Programming, Web Development, 2D and Audio Video Editing.</p>
<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="music-controller.js"></script>
</body>
</html>