-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
279 lines (231 loc) · 13.7 KB
/
index.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale =1">
<title>My portfolio website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">-->
<!-- <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" rel="script">-->
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<script
src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg="
crossorigin="anonymous"></script>
</head>
<body>
<!--Create splash page that user has to interact with before entering homepage-->
<section class="introPage splash" style= "height: 100%" id="test">
<div class="introTextPage">
<h1 id ="introText">
<!-- Welcome to my website!-->
</h1>
<p></p>
</div>
<div class="enter">
<a href="#" class="enterWebsite">Enter</a>
</div>
<p></p>
<!--<img alt= "window" src="IMG_1442.jpg" style="width: 50%">-->
<p></p>
</section>
<section class="homePage postSplash" >
<div class="wrapper">
<div class="homeHeader">
My portfolio
<p style="font-family: Raleway, sans-serif">Abbi Devins, M.D.</p>
</div>
<!-- https://www.w3schools.com/howto/howto_js_topnav_responsive.asp
Utilized cloud fare CDN for hamburger icon-->
<nav class="navigation page" id ="navigation" style="align-content: center; align-items: center; text-align: center;">
<a href="javascript:void(0);" class="hamburgerIcon" onclick="revealMenu()"><i class="fa fa-bars"></i></a>
<a class= "homePage" onclick = "openPage('home')" href="#home">Home</a>
<a class = "pages" onclick="openPage('about')" href="#about">About</a>
<a class = "pages" onclick="openPage('art')" href =#art>Art Work</a>
<a class = "pages" onclick="openPage('websites')" href =#websites>Websites & Projects</a>
<a class = "pages" onclick="openPage('education')" href =#education>Education</a>
<!-- <a class = "pages" onclick="openPage('contact')" href =#contact>Contact</a> -->
</nav>
</div>
<div class ="carousel-cont pageContent homepageContent" id="home">
<!-- https://www.w3schools.com/howto/howto_js_slideshow.asp-->
<div class="Feature fade">
<figure>
<a href="https://abisuresh.github.io/MemoryGame/" target="_blank"><img id="testPic" src="images/MemoryGame.png" style = "max-width: 35%" alt ="MemoryGame" class="images"></a>
<figcaption>Memory Game App-Udacity Nanodegree Program </figcaption>
</figure>
</div>
<div class="Feature fade">
<figure>
<a href="http://wedding.devinssuresh.com" target="_blank"><img id="weddingwebsite" style = "max-width: 50%" src ="images/weddingwebsitepic.png" alt="Wedding Website" class="images"></a>
<figcaption>Wedding Website</figcaption>
</figure>
</div>
<div class="Feature fade">
<figure>
<a onclick="openPage('art')" href =#art target="_blank"><img id="testPic2" src="images/self_portrait_closeup.jpg" style = "max-width: 29%" alt="Kamala Harris Painting" class="images"></a>
<figcaption>Self Portrait</figcaption>
</figure>
</div>
<!-- <a class="previous" onclick="moveSlide()">❮</a>-->
<!-- <a class="next" onclick="moveSlide()">❯</a>-->
<div style="text-align: center">
<!-- <span class="dot" onclick="selectedSlide(1)"></span>-->
<!-- <span class="dot" onclick="selectedSlide(2)"></span>-->
<!-- <span class="dot" onclick="selectedSlide(3)"></span>-->
<a class="dot"></a>
<span class="dot"></span>
<span class="dot"></span>
</div>
</div>
<!-- <div style="text-align: center">-->
<!-- <a class="dot"></a>-->
<!-- <span class="dot"></span>-->
<!-- <span class="dot"></span>-->
<!-- </div>-->
<br>
</section>
<section class="main">
<div id="about" class="pageContent">
<div class="flexbox-container">
<div class="info" style="color: black">
<p></p>
<div class="infoText">
Hi! I am a Software Engineer. I hope to be involved in machine learning, artificial intelligence and web development in the future.
I grew up in Naples, ME which is a small, rural town in south-western Maine.
I originally was exposed to programming and the internals of computers when I about
7 years old as my dad was a software engineer at the time. However, I didn't pursue learning
more about programming until my tween years where I was taught LOGO in a gifted and
talented math class. I also learned HTML and CSS on my own time during the years that followed.
While I was in college, I pursued neuroscience as it was an interest of mine and learned a
lot about the basic foundations of the brain as well as the workings of the nervous system in different animal systems.
I graduated with honors in neuroscience and headed off to medical school at the University of Vermont.
I have since graduated from that institution and obtained a BS degree in computer science from Oregon State University.
I hope to combine my interests in public health, data science and neuroscience with my burgeoning skills in technology.
I was initially interested in primarily web development but with the exposure I have had in my curriculum at Oregon State and
in conferences I have attended (DevWeek2019) and books and podcasts I've been exposed to, I have realized an interest in software engineering with a focus on
data science and artificial intelligence.
</div>
</div>
</div>
</div>
<div id="art" class="pageContent">
<div id="artModal" class="modal">
<span class="closeModal">×</span>
<img src= "" alt ="" id="imgModal" class="modalContent">
<span id="caption" style="color: white"></span>
</div>
<div class="flexrow">
<div class="flexcolumn">
<figure class="respArt">
<a><img id="abstractWorld" src="images/abstractworld.jpg" style = "width: 85%" alt ="abstract world painting" class="modalContent artImages"></a>
<figcaption>Abstract World Painting </figcaption>
</figure>
<figure class="respArt">
<a><img id="acadia" src="images/acadia.jpg" style = "width: 85%" alt ="acadia painting" class="modalContent artImages"></a>
<figcaption>Acadia, ME Abstract Painting </figcaption>
</figure>
<figure class="respArt">
<a><img id="adirondacks" src="images/adirondacks.jpg" style = "width: 85%" alt ="adirondack painting" class="modalContent artImages"></a>
<figcaption>Adirondacks Painting </figcaption>
</figure>
<figure class="respArt">
<a><img id="KHPainting" src="images/KHPainting.png" style = "width: 85%" alt ="Kamala Harris painting" class="modalContent artImages"></a>
<figcaption>Kamala Harris Painting </figcaption>
</figure>
</div>
<div class="flexcolumn">
<figure class="respArt">
<a><img id="patGF" src="images/patgf.jpg" style = "width: 85%" alt ="paternal GF painting" class="modalContent artImages"></a>
<figcaption>Paternal GrandFather Painting </figcaption>
</figure>
<figure class="respArt">
<a><img id="patGM" src="images/patgm.jpg" style = "width: 85%" alt ="paternal GM painting" class="modalContent artImages"></a>
<figcaption>Paternal GrandMother Painting </figcaption>
</figure>
<figure class="respArt">
<a><img id="selfPortrait" src="images/self_portrait_closeup.jpg" style = "width: 85%" alt ="self-portrait painting" class="modalContent artImages"></a>
<figcaption>Self-Portrait (Close-up) </figcaption>
</figure>
</div>
</div>
</div>
<div id="websites" class="pageContent">
<div class="flexrow">
<div class="flexcolumn">
<figure>
<a href="http://wedding.devinssuresh.com" target="_blank"><img id="wedWebsite" style = "width: 53%" src ="images/weddingwebsitepic.png" alt="Wedding Website" class="images"></a>
<figcaption>Wedding Website</figcaption>
</figure>
<figure>
<a href="https://abisuresh.github.io/frontendArcadeGameClone/index.html" target="_blank"><img id="arcGame" src="images/ArcadeGame.png" style = "width: 50%" alt ="MemoryGame" class="images"></a>
<figcaption>Arcade Game Clone App-Udacity Nanodegree Program </figcaption>
</figure>
</div>
<div class="flexcolumn">
<figure>
<a href="https://abisuresh.github.io/MemoryGame/" target="_blank"><img id="memGame" src="images/MemoryGame.png" style = "width: 43%" alt ="MemoryGame" class="images"></a>
<figcaption>Memory Game App-Udacity Nanodegree Program </figcaption>
</figure>
<figure>
<a href="https://abisuresh.github.io/reactnd-project-myreads-starter/" target="_blank"><img id="bookTrack" src="images/bookTracking.png" style = "width: 53%" alt ="MemoryGame" class="images"></a>
<figcaption>Book Tracking App-Udacity Nanodegree Program </figcaption>
</figure>
</div>
</div>
</div>
<div id="education" class="pageContent">
<div class="education">
<ul style="list-style-type: none">
<li>Johns Hopkins University (Masters, AI, current student) </li>
<li>Oregon State University (computer science, grad. June 2020) </li>
<li>Udacity Nanodegree Front-End Web Development Program (grad. October 2018) </li>
<li>University of Vermont College of Medicine (doctor of medicine, grad. May 2018)</li>
<li>Bowdoin College (neuroscience, grad. May 2012) </li>
</ul>
<div class="flexcol">
<button><a href="https://www.linkedin.com/in/abbi-devins-suresh-m-d/" target="_blank" style="font-weight: bolder">LinkedIn</a></button>
<button><a href="files/Devins_Abbi_Resume.pdf" target="_blank" style="font-weight: bolder">Download my Resume</a></button>
<button><a href="https://github.com/abisuresh" target="_blank" style="font-weight: bolder">GitHub Profile</a></button>
</div>
</div>
</div>
<div id="contact" class="pageContent">
<fieldset class="form">
<legend style="background-color: cornflowerblue"> Ask a question/Post a comment </legend>
<p> </p>
<!-- http://web.engr.oregonstate.edu/~zhangluy/tools/class-content/form_tests/check_request.php-->
<form action="javascript: " onsubmit="submitForm()" method="post">
<section class="formClass">
<p> </p>
Name: <input id = "name" type="text" name="text_input" size="" maxlength="">
<p> </p>
Email: <input id = "email" type="email" name="numerical_input" size="" maxlength="">
<p> </p>
Questions/Comments: <input id="question" type="text" name="text_input" size="" maxlength="">
<p> </p>
</section>
<p></p>
<input id= "formSubmit" type="submit" value="Submit"/>
</form>
<p> </p>
</fieldset>
</div>
<footer>
<div class="footer" style="position:relative; font-family: 'Snell Roundhand', cursive; color: black; bottom:10px;font-size: medium; text-align:center; width: 90%; margin:10% auto auto auto; height:30px; border:0 solid black;">
**This webpage was created and designed by Abbi Devins**
</div>
<br>
<div class="legalClause view" style="text-align: center">
© Abbi Devins, 2019.
Unauthorized use and/or duplication of this material without express and written permission
from this website’s author and/or owner is strictly prohibited. Excerpts and links may be used,
provided that full and clear credit is given to Abbi Devins and this website with appropriate and
specific direction to the original content.
</div>
</footer>
</section>
<script src="javascripts/animation.js"></script>
</body>
</html>