-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (85 loc) · 3.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Infinity </title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/defaults.css">
<link rel="stylesheet" href="css/animations.css">
<link rel="stylesheet" href="css/responsive.css">
</head>
<body>
<div class="container">
<section>
<header>
<nav>
<div class="heading glow">Infinity</div>
<div class="power nova">Reactor Overloading: <div id="val" class="glow">OFF</div>
</div>
<div class="indicator nova">
<p>Reaction Indicator- </p>
<div class="drop-down">
<div id="i1">Sodium Dichromate</div>
<hr>
<div id="i2">Potassium Permanganate</div>
<hr>
<div id="i3">Basic Litmus</div>
</div>
</div>
</nav>
</header>
<div class="panel">
<div class="text-content">
<div class="text-box">I'm <span class="text-change glow"></span></div>
<p>Hello Mates! I am Shashank, just a ordinary person and a part-time life enjoyer. I am a student and I like eating, sleeping, programming and science stuff.
</p>
</div>
<div class="reactor">
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
var typed = new Typed(".text-change", {
strings: ["Shashank.", "White Fang.", "a Hobbyist Coder.", " a Student."],
typeSpeed: 100,
backSpeed: 100,
loop: true
})
</script>
</section>
<section>
<div class="clock">
<div class="time glow nova" id="time_id"></div>
<div class="date nova" id="date_id"></div>
</div>
</section>
<section>
<div class="contact_head">
<p class="glow nova" id="c_id">Contact</p>
</div>
<div class="contact_content nova">
<p>Want to ask something, have a question? Or want to convey your regards? <br>
You can contact me on Twitter, Instagram and Discord. <br>
Contact me on:
</div>
<div class="links">
<ul>
<li><a href="https://twitter.com/WhiteFang033" target="_blank"><img src="assets/twitter_icon.png" alt=""></a></li>
<li><a href="https://discord.com/users/819439855880372246" target="_blank"><img src="assets/discord_icon.png" alt=""></a></li>
<li><a href="www.instagram.com/whitefang033/"><img src="assets/instagram_icon.png" alt=""></a></li>
</ul>
</div>
</p>
<div class="contact_outro">
<p class="nova">The typing effect on the first section of this site has been created with the help of <a
href="https://github.com/mattboldt/typed.js" target="_blank">JavaScript Typing Animation
Library↗</a> available on on Github. Check out the library if you are interested.</p>
</div>
</section>
</div>
</body>
<script src="js/drop_down.js"></script>
<script src="js/reactor_overloading.js"></script>
<script src="js/clock_.js"></script>
</html>