-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
257 lines (214 loc) · 10.2 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Karan Tanwar's Portfolio</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&family=Poppins:wght@400;700&family=Roboto&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<nav>
<div class="left">Karan Tanwar</div>
<div class="right">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skill">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact-me">Contact Me</a></li>
<li><a href="https://drive.google.com/file/d/1D-r3XMc0yJEvZAShayhpL8wdKd_WvuET/view?usp=sharing" target="_blank">Resume</a></li>
</ul>
</div>
</nav>
</header>
<main>
<section class="firstSection" id="home">
<div class="leftSection">
Hi, My name is <span class="namek">Karan Tanwar</span>
<div>and I am a passionate</div>
<span id="element"></span>
<div class="btns">
<button class="btn"> <a href="KaranTanwar-ResumeFinal.pdf" target="_blank"> Download Resume
</a></button>
<button class="btn"><a href="https://github.com/karan2782" target="_blank">Visit GitHub</a></button>
</div>
</div>
<div class="rightSection">
<img src="bg2.png" alt="">
</div>
</section>
<hr>
<section class="secondSection" id="about">
<h2 class="aboutWord">About Me</h2>
<div class="aboutBox">
<div class="image">
<img src="karan_image.jpg" alt="">
</div>
<div class="aboutPara">
<h1>My Name is Karan Tanwar and I am a <span>Algorithm Developer</span>.</h1>
<p> I am a passionate and dedicated web developer, currently honing my skills at Masai School. I
have a good knowledge about Data structure and algorithm, I bring a strong foundation in
problem-solving and logical thinking to my web development journey. My enthusiasm for creating
seamless and visually appealing websites drives me to explore the latest technologies and design
trends.</p>
</div>
</div>
</section>
<hr>
<section class="thirdSection" id="skill">
<h1>Skills</h1>
<div class="tools">
<div class="toolsImg">
<img src="html.webp" alt="">
<h4>HTML</h4>
</div>
<div class="toolsImg">
<img src="css.webp" alt="">
<h4>CSS</h4>
</div>
<div class="toolsImg">
<img src="js.webp" alt="">
<h4>JavaScript</h4>
</div>
<div class="toolsImg">
<img src="python.webp" alt="">
<h4>Python</h4>
</div>
<div class="toolsImg">
<img src="dsa.png" alt="">
<h4>Data structure and algorithm</h4>
</div>
<div class="toolsImg">
<img src="git.webp" alt="">
<h4>Git</h4>
</div>
</div>
<h1>Tools</h1>
<div class="tools">
<div class="toolsImg">
<img src="vs.webp" alt="">
<h4>VS Code</h4>
</div>
<div class="toolsImg">
<img src="github.webp" alt="">
<h4>Github</h4>
</div>
<div class="toolsImg">
<img src="pc.webp" alt="">
<h4>Pycharm</h4>
</div>
</div>
</div>
</section>
<hr>
<section class="forthSection" id="projects">
<div class="pack">
<h1>Projects</h1>
<div class="pack-horizontal">
<div class="project">
<img src="maze.png" alt="maze">
<h4>Terminal-Based Maze Solver</h4>
<li>A rat is trapped in the Maze. If there is any path exist, so rat can move out from this maze.</li>
<li>Findout which path is the shortest path to escape from the maze.</li>
<li>Implemented Breadth First Search algorithm to find shortest path for escaping the maze.</li>
<h5>Tech-Stack : Python</h5>
<div class="btn-project">
<button><a href="https://github.com/karan2782/terminal-maze-solver" target="_blank">GitHub
Repo</a></button>
<button><a href="maze-solver-project.mp4" target="_blank">Deployed</a></button>
</div>
</div>
<div class="project">
<img src="terminal.png" alt="typing-project">
<h4>Terminal Typing Master</h4>
<li>It is typing project which test typing speed of user.</li>
<li>It takes user name as the input. After completion of test, it shows result.</li>
<li>Used Json files for storing data, file handling, and time library.</li>
<h5>Tech-Stack : Python</h5>
<div class="btn-project">
<button><a href="https://github.com/karan2782/terminal-typing-master" target="_blank">GitHub
Repo</a></button>
<button><a href="terminal-typing-project.mp4" target="_blank">Deployed</a></button>
</div>
</div>
<div class="project">
<img src="social-md.png" alt="social media-project">
<h4>Download social media content using Libraries</h4>
<li>The work of this project is downloading social content from instagram and youtube.</li>
<li>Dowload profile picture from instagram and some videos from youtube.</li>
<li>Used instaloader and pytube library.</li>
<h5>Libraries : Instaloader and Pytube</h5>
<h5>Tech-Stack : Python</h5>
<div class="btn-project">
<button><a href="https://github.com/karan2782/Project-Instaloader_And_Pytube"
target="_blank">GitHub Repo</a></button>
<button><a href="social-media-download.mp4" target="_blank">Deployed</a></button>
</div>
</div>
<div class="project">
<img src="weather-forecast.webp" alt="weather project">
<h4>Using API to fetch the weather of the city</h4>
<li>It is displayed temperature of city.</li>
<li>Fetching weather by api key from website.</li>
<li>Import request library to find exact temperature of any given city.</li>
<h5>Libaray : request</h5>
<h5>Tech-Stack : Python</h5>
<div class="btn-project">
<button><a href="https://github.com/karan2782/weather_api_project" target="_blank">GitHub
Repo</a></button>
<button><a href="weather-project.mp4" target="_blank">Deployed</a></button>
</div>
</div>
</div>
</div>
</section>
<hr>
<section class="fifthSection">
<h1>Contact Me</h1>
<div class="contacts">
<h3>Get In Touch</h3>
<div class="contact-info">
<img src="gmail.png" alt="">
<div><a href="mailto:karantanwar5005@gmail.com">karantanwar5005@gmail.com</a></div>
</div>
<div class="contact-info" id="contact-me">
<img src="phone.webp" alt="">
<div><a href="tel:+91-7982932782" target="_blank">+91-7982932782</a></div>
</div>
<div class="contact-info">
<img src="lnkdin.webp" alt="">
<div><a href="https://www.linkedin.com/in/karan-tanwar-790042239/"
target="_blank">karan-tanwar-790042239</a></div>
</div>
<div class="contact-info">
<img src="github.webp" alt="">
<div><a href="https://github.com/karan2782" target="_blank">karan2782</a></div>
</div>
</div>
</section>
<footer>
<div>Thanks For Visiting my Portfolio</div>
</footer>
</main>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<!-- Setup and start animation! -->
<script>
var typed = new Typed('#element', {
strings: ['Tech Enthusiast', 'Programmer', 'Algorithm Developer.'],
typeSpeed: 50,
});
</script>
<script>
let h = document.getElementById("home")
button.addEventListner("click", () => {
document.querySelector(".firstSection")
})
</script>
</body>
</html>