-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
88 lines (87 loc) · 2.66 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-9N43BZ5GZC"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-9N43BZ5GZC");
</script>
<meta charset="UTF-8" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Montserrat"
/>
<link
href="https://fonts.googleapis.com/css?family=Source+Code+Pro"
rel="stylesheet"
/>
<link rel="icon" type="image/x-icon" href="favicon.png" />
<link rel="stylesheet" href="common.css" />
<title>About</title>
</head>
<body>
<div class="navbar">
<img src="favicon.png" referrerpolicy="same-origin" class="navbar-logo" />
<ul>
<li><a href="index.html">Home</a></li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a
href="https://mehulshinde.notion.site/Projects-088245bb19b7421dbdcbcbd97ec34de8?pvs=4"
>Projects</a
>
</li>
<li>
<a
href="https://mehulshinde.notion.site/Resume-9d23c3078db54260bc7984a144521b8b?pvs=4"
>Resume</a
>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
<div class="container">
<div id="home">
<div class="cover-img img-fluid">
<img
src="cover32.jpg"
class="img-fluid float-left"
alt="Responsive image"
height="85%"
width="85%"
/>
</div>
<div class="starter-template cover-text">
<h1 class="heading"><br />I'm Mehul Shinde.</h1>
<p class="center-paragraph">
I wrote my first Java program at the age of 10 and have been
captivated by the power of technology ever since. It amazes me that
a single piece of software can touch millions of individuals and
have a profound impact on their lives in a way that no other medium
can. As a technologist, I believe it is my responsibility to
leverage my understanding of software to build solutions that
meaningfully improve people's lives.
</p>
</div>
</div>
</div>
</body>
</html>