-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
121 lines (106 loc) · 6.05 KB
/
about.html
File metadata and controls
121 lines (106 loc) · 6.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>About me | Dev Agrawal</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/business-casual.min.css" rel="stylesheet">
</head>
<body>
<h1 class="site-heading text-center text-white d-none d-lg-block">
<span class="site-heading-upper text-primary mb-3">Portfolio</span>
<span class="site-heading-lower">Dev Agrawal</span>
</h1>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark py-lg-4" id="mainNav">
<div class="container-fluid">
<a class="navbar-brand text-uppercase text-expanded font-weight-bold d-lg-none" href="#">Dev Agrawal</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav mx-auto">
<li class="nav-item px-lg-4">
<a class="nav-link text-uppercase text-expanded" href="index.html">Home</a>
</li>
<li class="nav-item active px-lg-4">
<a class="nav-link text-uppercase text-expanded" href="about.html">About Me</a>
</li>
<li class="nav-item px-lg-4">
<a class="nav-link text-uppercase text-expanded" href="experiences/index.html">Honors Experiences</a>
</li>
<li class="nav-item px-lg-4 dropdown">
<a class="nav-link text-uppercase text-expanded dropdown-toggle" href="#" data-toggle="dropdown">
Year in Review
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="review/freshman.html">Freshman</a>
<a class="dropdown-item" href="review/sophomore.html">Sophomore</a>
</div>
</li>
<li class="nav-item px-lg-4 dropdown">
<a class="nav-link text-uppercase text-expanded dropdown-toggle" href="#" data-toggle="dropdown">
Gateway to University Honors
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="pitch.html">Problem Pitch</a>
<a class="dropdown-item" href="gcsp.html">Global Citizen Scholar Plan</a>
</div>
</li>
<li class="nav-item px-lg-4">
<a class="nav-link text-uppercase text-expanded" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="page-section about-heading">
<div class="container">
<img class="img-fluid rounded about-heading-img mb-3 mb-lg-0" src="img/about.jpg" alt="">
<div class="about-heading-content">
<div class="row">
<div class="col-xl-9 col-lg-10 mx-auto">
<div class="bg-faded rounded p-5">
<h2 class="section-heading mb-4">
<span class="section-heading-upper"></span>
<span class="section-heading-lower">About me</span>
</h2>
<p>
I am Dev Agrawal (The name 'Dev' translates to 'God', but I don't let that get to my head :P ). I am a third-year Information Technology major at the University of Cincinnati. I am also a software developer, and currently I work at the UC IT Solutions Center.
</p>
<p>
I was introduced into this world on the 9th of May 1999, the last summer of the millenium, in the beautiful and diverse country of India. I was born to highly socially active parents, with a large age gap between me and all of my older cousins, including my brother. These factors made me a very socially-awkward person. So I spent most of my life trying to overcome my social anxiety, but never truly succeeded.
</p>
<p>
I got interested into the field of computer science very early, when my brother introduced my to something called "C++". The power of making a computer do whatever I wanted through text commands felt amazing. That's when my love of learning kicked in, which made me spend hours everyday learning about programming and software development. School was boring, so I had a lot of time to dedicate to my newfound love.
</p>
<p>
I am a problem solver. I have always been attracted to puzzles and riddles. I like how they compel you to move all the gears of your brain for one purpose - search for a solution. And successfully finding the solution is highly rewarding. This is why I was attracted to the Information Technology program - most of it is problem solving.
</p>
<p class="text-center">
<a href="resume.pdf">Check out my resume here!</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer text-faded text-center py-5">
<div class="container">
<p class="m-0 small">Made by Davian Studios</p>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>