-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
179 lines (170 loc) · 5.47 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="./nav.css" />
<link rel="stylesheet" href="./index.css" />
<link
crossorigin="anonymous"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
rel="stylesheet"
/>
<title>Portfolio</title>
</head>
<body>
<header class="page-header">
<div class="page-header__top">
<div class="page-header__logo">PORTFOLIO</div>
<div class="page-header__toggle" onclick="toggleMenu()">☰</div>
</div>
<nav class="page-header__bottom">
<ul id="navigation" class="navigation">
<li class="navigation__item">
<a href="index.html"></a>
Home
</li>
<li class="navigation__item">
<a href="experience.html">Experiences</a>
</li>
</ul>
</nav>
</header>
<div class="container">
<div class="left_side">
<div class="profileText">
<div class="imgBx">
<img src="./assets/profile-image.jpg" alt="profile" />
</div>
<h2>Yukti Khosla</h2>
<span>Production Services Engineer @Apple</span>
</div>
<div class="contactInfo language">
<h3 class="title">Languages</h3>
<ul>
<li>
<span class="icon">
<i class="fab fa-python" aria-hidden="true"></i>
</span>
<span class="text">Python</span>
<!-- <span class="percent"> -->
<!-- <div style="width: 90%"></div> -->
<!-- </span> -->
</li>
<li>
<span class="icon">
<i class="fab fa-cuttlefish" aria-hidden="true"></i>
</span>
<span class="text">C</span>
<!-- <span class="percent"> -->
<!-- <div style="width: 75%"></div> -->
<!-- </span> -->
</li>
<li>
<span class="icon">
<i class="fab fa-cuttlefish" aria-hidden="true"></i>
</span>
<span class="text">C++</span>
<!-- <span class="percent"> -->
<!-- <div style="width: 85%"></div> -->
<!-- </span> -->
</li>
<li>
<span class="icon">
<i class="fas fa-code" aria-hidden="true"></i>
</span>
<span class="text">MATLAB</span>
<!-- <span class="percent"> -->
<!-- <div style="width: 80%"></div> -->
<!-- </span> -->
</li>
<li>
<span class="icon">
<i class="fab fa-java" aria-hidden="true"></i>
</span>
<span class="text">Java</span>
<!-- <span class="percent"> -->
<!-- <div style="width: 95%"></div> -->
<!-- </span> -->
</li>
</ul>
</div>
</div>
<div class="right_side">
<div class="player">
<div class="toggle"></div>
<!-- <audio src="./assets/mixkit-mouse-click-close-1113.wav" class="audio"></audio>-->
</div>
<div class="about">
<h2 class="title2">About Me</h2>
<p>
I'm a proactive go-getter who seizes opportunities instead of waiting for them to appear. My unrelenting passion centers around addressing real-world challenges, one step at a time. I portray myself as a devoted and perceptive learner, with a constant thirst for knowledge. My skill set encompasses software development, image processing, signal processing, and machine learning. <br> <br>
In addition, I'm deeply committed to promoting equal opportunities for both men and women. I'm wholeheartedly open to engaging in meaningful discussions on women empowerment.
</p>
</div>
<div class="about links">
<h2 class="title2" style="margin-bottom: 40px">Profile links</h2>
<div class="wrapper">
<div class="button">
<a href="https://github.com/Yukti-09">
<div class="icon"><i class="fab fa-github"></i></div>
<span>Github</span>
</a>
</div>
<div class="button">
<a href="https://www.linkedin.com/in/yukti09/">
<div class="icon"><i class="fab fa-linkedin-in"></i></div>
<span>linkedin</span>
</a>
</div>
<div class="button">
<a href="https://www.hackerrank.com/yuktikhosla?hr_r=1">
<div class="icon"><i class="fab fa-hackerrank"></i></div>
<span>HackerRank</span>
</a>
</div>
</div>
</div>
<div class="credits">
<p>coded by Afif</p>
<div>
<a href="https://github.com/afif1400">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/afif-ahmed/">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
<span></span>
</div>
</div>
</div>
<script>
const body = document.querySelector('body');
// const audio = document.querySelector('.audio');
const audio = new Audio('./assets/mixkit-mouse-click-close-1113.wav');
const toggle = document.querySelector('.toggle');
const right_side = document.querySelector('.right_side');
const change = async () => {
if (audio.paused) {
await audio.play();
} else {
audio.currentTime = 0;
}
await audio.play();
body.classList.toggle('dark');
right_side.classList.toggle('dark');
};
toggle.addEventListener('click', change);
let nav = document.getElementById('navigation');
function toggleMenu() {
nav.classList.toggle('navigation--visible');
}
</script>
</body>
</html>