-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (99 loc) · 3.83 KB
/
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
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
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aaravv's Portfolio</title>
<link rel="stylesheet" type="text/css" href="./fullpage.min.css" />
<link rel="stylesheet" type="text/css" href="main.css" />
<!-- Created using fullPage.js (https://alvarotrigo.com/fullPage/) -->
</head>
<body>
<nav>
<ul id="navigation">
<div>
<li data-anchor="top">
<a href="#top">Aaravv</a>
</li>
</div>
<div>
<li data-anchor="aboutme">
<a href="#aboutme">About Me</a>
</li>
<li data-anchor="myprojects">
<a href="#myprojects">My Projects</a>
</li>
<li data-anchor="competitions">
<a href="#competitions">Competitions</a>
</li>
<li data-anchor="contact">
<a href="#contact">Contact</a>
</li>
<li id="hamburger">
<span></span><span></span><span></span>
</li>
</div>
</ul>
</nav>
<div id="fullpage">
<!-- Each section has a typing animation that starts on-scroll (except for the first one, because the user is already on that section). -->
<div class="section" id="hero">
<h1 id="hero-typed"></h1>
<p id="hero-typed"></p>
</div>
<div class="section">
<h1 id="aboutme-typed"></h1>
<p id="aboutme-typed"></p>
</div>
<div class="section">
<h1 id="projects-typed"></h1>
<p id="projects-typed"></p>
<section id="scratchProjects">
<iframe
src="https://scratch.mit.edu/projects/815197073/embed"
allowtransparency="true"
width="485"
height="402"
frameborder="0"
scrolling="no"
allowfullscreen
></iframe>
</section>
</div>
<div class="section">
<h1 id="achievements-typed"></h1>
<p id="achievements-typed"></p>
</div>
<div class="section" id="last">
<h1 id="contactme-typed"></h1>
<p id="contactme-typed"></p>
<footer>Copyright © Aaravv Chopra</footer>
</div>
</div>
<script type="text/javascript" src="typed.umd.js"></script>
<script type="text/javascript" src="typing.js"></script>
<script type="text/javascript" src="fullpage.min.js"></script>
<script>
placeHolder = document.getElementById("contact");
// Fullpage.js code
var myFullpage = new fullpage("#fullpage", {
responsiveWidth: 800,
// Done on Nov 22, 2024. You can check the date probably.
licenseKey: "p4ldGaW!i0", // Note to self: DO NOT CHANGE THIS
autoScrolling: true,
anchors: [
"top",
"aboutme",
"myprojects",
"competitions",
"contact",
],
afterLoad: function (origin, destination, direction, trigger) {
if (origin) {
callTyping(destination.index);
}
},
});
</script>
</body>
</html>