-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
104 lines (104 loc) · 5.46 KB
/
resume.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
<!DOCTYPE html>
<html>
<head>
<title>Resume</title>
<link href="myPortfolio.css" rel="stylesheet" type="text/css">
<link href="bootstrap-4.1.2-dist/css/bootstrap.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--For mobile sites-->
</head>
<body>
<div class="pos-f-t sticky-top"><!--This is my navigation bar, this part is the collapse which brings in the Contact Me using a little bit of JS-->
<div class="collapse" id="navbarToggleExternalContent">
<div class="bg-dark p-4 contact"><!--Sets it to dark and spaces it-->
<h4 class="contact-t"> Contact Me: Dublin, CA</h4>
<div class="container logo">
<a href="mailto:[email protected]"> target="_blank" <img class="img-fluid logo-t" src="Images/mail.png" alt="Mail Logo"></a>
<a href="https://github.com/abj101"> target="_blank" <img class="img-fluid logo-t" src="Images/git.png" alt="git Logo"></a>
<a href="https://www.dublin.k12.ca.us/dhs"> target="_blank" <img class="img-fluid logo-t" src="Images/DHS.png" alt="DHS Logo"></a>
</div>
</div>
</div>
<nav class="sticky-top nav nav-fill navbar navbar-dark bg-dark"> <!--This is the nav bar for all of the parts of my website-->
<a class=" nav-item nav-link active" href="index.html">Home</a>
<a class=" nav-item nav-link" href="Bandopadhyay_AboutMe.html">About Me</a>
<a class=" nav-item nav-link" href="resume.html">Resume</a>
<a class=" nav-item nav-link" href="projects.html">Projects</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span><!--This is my button which is toggling the collapse-->
</button>
</nav>
</div>
<div class="jumbotron">
<div class="container about">
<h1 class="text-center">My Resume</h1><!--Title for Resume-->
<h5 class="text-center">2018-2019</h5>
</div>
</div>
<div class="container"><!--All of the bullet points and sections for resume-->
<div class="row">
<div class="col-sm-6">
<strong>Objective:</strong>
<p>My goal in life is to become an engineer or designer, creating something everyday that will improve and benefit our planet. To do this, I plan on focusing on math, science, and languages. By focusing in these areas, I will go forward in my studies to achieve my dream.</p>
<strong>Education:</strong>
<ul>
<li>Fallon Middle School</li>
<li>Dublin High School:</li>
<ul>
<li>Computer Science Principles</li>
<li>Advance English for Freshman</li>
<li>Algebra II with Trigonometry</li>
<li>French 2</li>
</ul>
</ul>
<strong>Future Education:</strong>
<ul>
<li>Stanford</li>
<li>Harvard</li>
<li>MIT</li>
<li>UC Berkeley</li>
</ul>
<strong>Volunteer Experience:</strong>
<ul>
<li>Red Cross</li>
<li>Big Help 2015, 2016</li>
<li>Dublin High School Parade 2018</li>
<li>CJSF Tutoring 2018</li>
</ul>
</div>
<div class="col-sm-6">
<strong>Skills:</strong>
<ul>
<li>Trilingual: Fluent - English, Bengali, Learning - French</li>
<li>Math - Algebra II with Trig(2 years ahead average)</li>
<li>Team player</li>
<li>Home Pastry Chef</li>
<li>Occasional Tinkerer(Arduino, Raspberry Pi, Legos)</li>
<li>Competitive Swimming</li>
<li>Python, HTML, CSS, Programming</li>
</ul>
<strong>Certificates:</strong>
<ul>
<li>Honor Roll(Whole Education)</li>
<li>Gifted(Arizona 2013)</li>
<li>3 Trophies Karate - Black Belt First Degree</li>
<li>2nd Place Essay Contest to Mayor 2014</li>
<li>GATE(Gifted and Talented Education)</li>
</ul>
<strong>Extracurricular:</strong>
<ul>
<li>Pleasanton Seahawks Swimteam</li>
<li>Karate(Past)</li>
<li>Red Cross</li>
<li>Enviro Tech(Building ROV)</li>
<li>After School Tutoring</li>
<li>CSF</li>
</ul>
</div>
</div>
</div>
</body>
<!--Links to JS in botstrap for just nav bar-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</html>