-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
113 lines (113 loc) · 3.52 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<link rel="stylesheet" href="./css/styles.css" />
<title>Shashank Sapre</title>
</head>
<body>
<div class="container">
<header>
<div class="navigation">
<ul>
<li><a href="./index.html">ABOUT</a></li>
<!-- <li>PROJECTS</li> -->
<li>
<a href="https://medium.com/@shashank.sapre" target="_blank"
>BLOG</a
>
</li>
<li>CONTACT</li>
</ul>
</div>
<div class="banner">
<div class="selfie">
<img src="./img/dp.jpg" class="dp" />
</div>
<div class="about-me">
<p>Hello, my name is</p>
<h1>Shashank Sapre</h1>
<p>
I am a software developer with over 9 years of experience working
in the IT Industry. Throughout these years I have worked with
backend technologies, products, and frameworks. I have had
experience in building REST APIs with NodeJS, Layer 7 & Kong API
Gateway, etc. I just recently starting dabbling in frontend
technologies/frameworks
</p>
</div>
</div>
</header>
<main>
<div class="content-light">
<div class="heading">
<h2>Contact Info</h2>
<h3>
You can email me at [email protected] or connect with me
at any of the social links given at the bottom.
</h3>
</div>
</div>
</main>
<footer>
<div class="social">
<!-- <a target="blank" href="https://www.twitch.tv/daisychaincosplay"
><i class="fab fa-twitch"></i
></a>
<a
target="blank"
href="https://www.youtube.com/channel/UC-gCUMK_EGUqJ7P9VA7BJmQ"
><i class="fab fa-youtube"></i
></a> -->
<a
target="blank"
class="custom-g"
href="https://github.com/shashanksapre"
><i class="fab fa-github"></i
></a>
<a
target="blank"
class="custom-l"
href="https://www.linkedin.com/in/shashank-sapre-6715723a/"
><i class="fab fa-linkedin"></i
></a>
<a
target="blank"
class="custom-i"
href="https://www.instagram.com/shashanksapre/"
><i class="fab fa-instagram"></i
></a>
<a
target="blank"
class="custom-t"
href="https://twitter.com/scriptsapre"
><i class="fab fa-twitter"></i
></a>
<!-- <a
target="blank"
class="custom-f"
href="https://www.facebook.com/shank1991"
><i class="fab fa-facebook"></i
></a> -->
</div>
<p>© 2023 Shashank Sapre. All rights reserved.</p>
</footer>
</div>
</body>
<script
type="text/javascript"
async
src="//cdn.credly.com/assets/utilities/embed.js"
></script>
</html>