-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (76 loc) · 2.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Apoorva Jha</title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="icon" href=" css\favicon (3).ico" />
<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=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet"
/>
<!-- link to the external stylesheet and the favicon -->
</head>
<body>
<div class="header">
<img class="top-cloud" src="css/cloud.png" alt="cloud image " />
<h1 class="name">Hi, I'm Apoorva</h1>
<h2>An engineer.</h2>
<img class="bottom-cloud" src="css/cloud.png" alt="Cloud image" />
<img class="mountain" src="css/mountain.png" alt="mountain image" />
</div>
<div class="middle-container">
<div class="profile">
<img class="pp" src="css/pp-modified.png" alt="myself" />
<p>
I am a third year undergraduate studying in IIT Kanpur. I love
singing, eating and playing the guitar.
</p>
</div>
<hr class="section-break" />
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<img class="dsa-image" src="css/idea.png" alt="" />
<h3>Data Structures and Algorithms</h3>
<p>
I am well versed with the concepts of data structures and algorithms
including the advanced concepts like graphs, dyanamic programming
etc. I enjoy problem solving and am consistent on coding platforms.
</p>
</div>
<div class="skill-row">
<img class="webdev-image" src="css/coding.png" alt="" />
<h3>Web Development</h3>
<p>
This is a relatively new journey for me. Just starting out with HTML
and CSS, I am determined to become a pro at full stack web
development and build awesome projects.
</p>
</div>
</div>
<hr class="section-break" />
<div class="contact-me">
<h2>Get In Touch</h2>
<h3>If you want to talk geopolitics, society or programming.</h3>
<p>
I believe an amazing conversation is always around the corner. Message
me on LinkedIn.
</p>
<a class="btn" href="mailto:jhaapoorva12@gmail.com">Contact Me</a>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/in/apoorvjha12/"
>LinkedIn</a
>
<a class="footer-link" href="https://github.com/DrunkSunGod">Github</a>
<a class="footer-link" href="https://leetcode.com/Drunk_Sun_God/"
>Leetcode</a
>
<p class="copyright">© Apoorva Jha</p>
</div>
</body>
</html>