-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (128 loc) · 3.9 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Akshat Jain</title>
<meta name="description" content="A minimalistic personal website." />
<meta name="author" content="Daniel Bala" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://fonts.googleapis.com/css?family=Raleway:400,300,600"
rel="stylesheet"
type="text/css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.3/tiny-slider.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<style>
body {
overflow: hidden;
color: #dcd9d4;
background-color: #181a1b;
}
body a:not(.highlighted-words) {
color: #dcd9d4;
}
.section {
position: relative;
height: 95vh;
}
div a,
div a:hover,
span,
a {
color: #339ff0;
text-decoration: none;
}
.fab,
.far,
.fas {
padding: 5px;
font-size: 20px;
text-align: center;
color: #222;
vertical-align: middle;
}
</style>
<link rel="icon" type="image/png" href="favicon.ico" />
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!-- Hero Section -->
<div class="section" id="hero">
<div class="container">
<div class="row">
<div class="one-half column" style="margin-top: 25%">
<div id="rotating-words" class="slider">
<div class="item">
<h4>Hi, I'm <span>Akshat Jain.</span></h4>
</div>
<div class="item">
<h4>Hi, I'm <span>a programmer.</span></h4>
</div>
<div class="item">
<h4>Hi, I'm <span>a student.</span></h4>
</div>
<div class="item">
<h4>Hi, I'm <span>a problem solver.</span></h4>
</div>
</div>
<div id="rotating-paragraphs">
<p>
Currently studying Engineering Physics at
<span>Delhi Technological University</span>. I love solving
problems and connecting with new people! Leave me a mail at
<a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
<div id="social-bar">
<a class="fas fa-envelope" href="mailto:[email protected]"></a>
<a
class="fab fa-linkedin-in"
href="https://linkedin.com/in/akshatj27"
></a>
<a class="fab fa-github" href="https://github.com/akshatj27"></a>
<a
class="fab fa-instagram"
href="https://instagram.com/akshat.1337"
></a>
</div>
</div>
</div>
</div>
</div>
<footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.2/min/tiny-slider.js"></script>
<script>
(function () {
var sliders = document.querySelectorAll(".slider");
sliders.forEach((slider) => {
tns({
container: slider,
mode: "gallery",
controls: false,
nav: false,
autoplay: true,
autoplayButtonOutput: false,
mouseDrag: true,
});
});
})();
</script>
</footer>
</body>
</html>