-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
101 lines (74 loc) · 4.47 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
89
90
91
92
93
94
95
96
97
98
99
100
101
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Dhwani Parekh</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=EB+Garamond|Karla&display=swap" rel="stylesheet">
<!-- CSS Stylesheets -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<!-- Font awesome -->
<script src="https://kit.fontawesome.com/965161686c.js"></script>
<link rel="stylesheet" href="https://kit-free.fontawesome.com/releases/latest/css/free.min.css" media="all">
<link rel="stylesheet" href="https://kit-free.fontawesome.com/releases/latest/css/free-v4-font-face.min.css" media="all">
<link rel="stylesheet" href="https://kit-free.fontawesome.com/releases/latest/css/free-v4-shims.min.css" media="all">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon0.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x320.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x160.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Animation -->
<link rel="stylesheet" href="css/animate.css">
<!-- Bootstrap scripts -->
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script>
$(function() {
$("#header").load("navbar.html");
$("#footer").load("footer.html");
$("#contact").load("contact.html");
});
</script>
<!-- Scaling to mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="header"></div>
<!-- Main Section -->
<section id="quote-section">
<div class="container-fluid fadeInDown animated">
<p class="quote">“What excites me about design?”</p>
</div>
</section>
<section id="my-story">
<div class="container-fluid fadeInDown animated">
<div class="row">
<div class="col-lg-6 col-md-12 col-sm-12">
<img src="images/MeAtStarbucks.jpg" alt="Me At Starbucks.">
</div>
<div class="col-lg-6 col-md-12 col-sm-12">
<h3 style="padding-top: 40px;" class="top-line">
I love programming and have enjoyed building systems that support people in their day to day life. Recently, while following a friend’s start-up journey, I found discussing the product and its flows quite engrossing and discovered my interest in user experience design. I spent time reading about it and enjoyed it so much that I decided to go to University and study human-centered design principles and how to apply them.
</h3>
<h3>
Generally, I enjoy connecting the dots, questioning things and figuring out how things fit together. I like solving problems and simplifying the complex. At work, to solve the problems - I talked to people, understood the actual problems, found the root causes and provided solutions. Also, I think it's important to understand people from their own perspective and listen to their ideas.
</h3>
<h3>
I look forward to harnessing my creative energy and contribute to society by designing easy-to-use products.
</h3>
<h3>
I love Charles Kettering's quote “A problem well stated is a problem half-solved.”
</h3>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<div id="contact"></div>
<!-- Footer -->
<div id="footer"></div>
</body>
</html>