-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·602 lines (580 loc) · 28.9 KB
/
Copy pathindex.html
File metadata and controls
executable file
·602 lines (580 loc) · 28.9 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
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
<!DOCTYPE html>
<html lang="zxx" class="no-js">
<head>
<!-- Mobile Specific Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon-->
<link rel="shortcut icon" href="img/fav.png">
<!-- Author Meta -->
<meta name="author" content="colorlib">
<!-- Meta Description -->
<meta name="description" content="">
<!-- Meta Keyword -->
<meta name="keywords" content="">
<!-- meta character set -->
<meta charset="UTF-8">
<!-- Site Title -->
<title>Resume</title>
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,400,300,500,600,700" rel="stylesheet">
<!--
CSS
============================================= -->
<link rel="stylesheet" href="css/linearicons.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- start banner Area -->
<section class="banner-area" id="home">
<!-- Start Header Area -->
<header class="default-header">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="img/logo.png" alt="">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="text-white lnr lnr-menu"></span>
</button>
<div class="collapse navbar-collapse justify-content-end align-items-center" id="navbarSupportedContent">
<ul class="navbar-nav">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#awards">Awards</a></li>
<li><a href="#conferences">Conferences</a></li>
<li><a href="#affilations">Affilations</a></li>
<li><a href="#project">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<!-- Dropdown -->
<li class="dropdown">
<a class="dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Pages
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="pictures.html">Images</a>
<a class="dropdown-item" href="web/index.html">Software</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- End Header Area -->
<div class="container">
<div class="row justify-content-start align-items-center">
<div class="col-lg-6 col-md-12 no-padding banner-right">
<img class="img-fluid" src="img/header-img.png" alt="" style="opacity: 0;">
</div>
<div class="col-lg-6 col-md-12 banner-left">
<h1 class="text-white">
Hi, I’m <br>
<span>Disaiah Bennett</span> <br>
Elizabeth City State University Under Graduate
</h1>
<!--p class="mx-auto text-white mt-20 mb-40">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod temp <br>
or incididunt ut labore et dolore magna aliqua. Ut enim ad minim.
</p-->
<a href="#" class="text-uppercase header-btn">Let Us Talk</span></a>
</div>
</div>
</div>
</section>
<!-- End banner Area -->
<!-- Start about Area -->
<section class="about-area section-gap" id="about">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="menu-content pb-70 col-lg-8">
<div class="title text-center">
<h1 class="mb-10">About Myself</h1>
<p>Computer Science Major with Minor in Mathematics.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 about-left">
<p>
Hello my name is Disaiah Bennett, I am a senior undergraduate at Elizabeth
City State University (ECSU) located in Elizabeth City, North Carolina. I am a
computer science major with a scientific concentration, and minor in mathematics. My passion for computer science, led to
my interest in analyzing data, networking, programming, and software engineering.
I plan on achieving a bachelor’s degree at ECSU and later continuing to
pursue an education at a graduate level to obtain my Master's Degree in Data Analytics.
</p>
<p>
To gain and develop a strong understanding in the field of computer science,
I have challenged myself by attending internships, conferences, and a hackathon,
to increase my learning for the future.
</p>
<h4 class="pb-40">Tools Expertness</h4>
<div class="skillbar" data-percent="85%">
<div class="skill-bar-percent">Adobe Dreamweaver 85%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 85%;"></div>
</div>
</div>
<div class="skillbar" data-percent="80%">
<div class="skill-bar-percent">Adobe Photoshop 80%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 80%;"></div>
</div>
</div>
<div class="skillbar" data-percent="60%">
<div class="skill-bar-percent">Maya 40%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 40%;"></div>
</div>
</div>
<div class="skillbar" data-percent="55%">
<div class="skill-bar-percent">Digital Cameras 55%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 55%;"></div>
</div>
</div>
<div class="skillbar" data-percent="70%">
<div class="skill-bar-percent">Linux 70%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 70%;"></div>
</div>
</div>
<h4 class="pb-40">Coding Language Knowledge</h4>
<div class="skillbar" data-percent="65%">
<div class="skill-bar-percent">C++ 65%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 65%;"></div>
</div>
</div>
<div class="skillbar" data-percent="50%">
<div class="skill-bar-percent">C 50%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 50%;"></div>
</div>
</div>
<div class="skillbar" data-percent="35%">
<div class="skill-bar-percent">GoLang 35%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 35%;"></div>
</div>
</div>
<div class="skillbar" data-percent="75%">
<div class="skill-bar-percent">HTML 75%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 75%;"></div>
</div>
</div>
<div class="skillbar" data-percent="80%">
<div class="skill-bar-percent">Java 80%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 80%;"></div>
</div>
</div>
<div class="skillbar" data-percent="65%">
<div class="skill-bar-percent">PHP 65%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 65%;"></div>
</div>
</div>
<div class="skillbar" data-percent="75%">
<div class="skill-bar-percent">Python 75%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 75%;"></div>
</div>
</div>
<div class="skillbar" data-percent="55%">
<div class="skill-bar-percent">SQL 55%</div>
<div class="skillwrap">
<div class="skillbar-bar" style="width: 55%;"></div>
</div>
</div>
</div>
<div class="col-lg-6 about-right justify-content-end d-flex">
<div class="myself-wrap">
<img class="img-fluid" src="img/about-disaiah.JPG" alt="">
<div class="desc">
<h4>Disaiah Bennett</h4>
<p class="pb-10">Computer Scientist</p>
<p><span class="lnr lnr-phone"></span> (252)267-3254</p>
<p><span class="lnr lnr-envelope"></span> lavontae.bennett@gmail.com</p>
<p><span class="lnr lnr-envelope"></span> officialdisaiahbennett@gmail.com</p>
<p><span>Expected Graduation Date: May 2019</span></p>
<a class="mt-30 text-uppercase talk-btn" href="#">Hire Me</span></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End about Area -->
<!-- Start qualification Area -->
<section class="qualification-area pt-100 pb-80" id="awards">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="menu-content pb-20 col-lg-8">
<div class="title text-center">
<h1 class="mb-10">Awards and Scholarships</h1>
<p>Rewards & opportunities presented by the university.</p>
</div>
</div>
</div>
<div class="row d-flex justify-content-center">
<div class="col-lg-6 col-md-6 qty-left">
<div class="single-qly">
<h4 class="pb-20">University of North Carolina Campus Based Scholarship</h4>
<p><b>Session</b>: Fall 2017</p>
<p><b>Location: </b>Elizabeth City State University</p>
</div>
<div class="btm-border d-block mx-auto"></div>
<div class="single-qly">
<h4 class="pb-20">Center of Excellence in Remote Sensing Education and Research Umfort Locas Award</h4>
<p><b>Session</b>: 2016 - 2017</p>
<p><b>Location: </b>Elizabeth City State University</p>
</div>
<div class="btm-border d-block mx-auto"></div>
<div class="single-qly">
<h4 class="pb-20">Trio Award</h4>
<p><b>Session</b>: Spring 2018</p>
<p><b>Location: </b>Elizabeth City State University</p>
</div>
</div>
<div class="col-lg-6 col-md-6 qty-right">
<div class="single-qly">
<h4 class="pb-20">Center of Excellence in Remote Sensing Education & Research Scholarship</h4>
<p><b>Session</b>: Fall 2017</p>
<p><b>Location: </b>Elizabeth City State University</p>
</div>
<div class="btm-border d-block mx-auto"></div>
<div class="single-qly">
<h4 class="pb-20">Center of Excellence in Remote Sensing Education and Research Award</h4>
<p><b>Session</b>: Spring 2018</p>
<p><b>Location: </b>Elizabeth City State University</p>
</div>
<div class="btm-border d-block mx-auto"></div>
<div class="single-qly">
<h4 class="pb-20">John N. Smith Scholarship</h4>
<p><b>Session</b>: Fall 2018</p>
<p><b>Location: </b>Elizabeth City State University</p>
</div>
</div>
</div>
</div>
</section>
<!-- End qualification Area -->
<!-- Start qualification Area -->
<section class="project-area section-gap" id="conferences">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="menu-content pb-20 col-lg-8">
<div class="title text-center">
<h1 class="mb-10">Conferences/Hackathons</h1>
<p>Undergraduate conferences and competition.</p>
</div>
</div>
</div>
<div class="row d-flex justify-content-center">
<div class="col-lg-6 col-md-6 qty-left">
<div class="single-qly">
<h4 class="pb-20">The 89th Annual National Technical Association National Conference</h4>
<p><b>Session</b>: Fall 2017</p>
<p><b>Location</b>: Location: Morgan State University - Baltimore, Maryland</p>
</div>
<div class="btm-border d-block mx-auto"></div>
</div>
<div class="col-lg-6 col-md-6 qty-right">
<div class="single-qly">
<h4 class="pb-20">IBM BlueHack Atlanta Hackathon (3rd Place)</h4>
<p><b>Session</b>: Fall 2017</p>
<p><b>Location</b>: Atlanta, Georgia</p>
</div>
<div class="btm-border d-block mx-auto"></div>
<div class="single-qly">
<h4 class="pb-20">The 12th Gateway Computing Environments Conference</h4>
<p><b>Session</b>: Fall 2017</p>
<p><b>Location</b>: University of Michigan - Ann Arbor, Michigan</p>
</div>
</div>
</div>
</div>
</section>
<!-- End qualification Area -->
<!-- Start qualification Area -->
<section class="qualification-area pt-100 pb-80" id="affilations">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="menu-content pb-20 col-lg-8">
<div class="title text-center">
<h1 class="mb-10">Technical Affilations/School Clubs</h1>
<p>Undergraduate societies and organizations affiliations.</p>
</div>
</div>
</div>
<div class="row d-flex justify-content-center">
<div class="col-lg-6 col-md-6 qty-left">
<div class="single-qly">
<h3 class="text-uppercase">Center of Excellence in Remote Sensing Education and Research (CERSER)</h3>
<p><b>Session: </b>2016 - Present</p>
<h4 class="pt-20 pb-20">Student Researcher</h4>
<p>
All users on MySpace will know that there are millions of <br>people out there. Every day besides.
</p>
</div>
<div class="btm-border d-block mx-auto"></div>
<div class="single-qly">
<h3 class="text-uppercase">Department of Mathematics & Computer Science Pi - Byte Club</h3>
<p><b>Session</b>: 2016 - Present</p>
<h4 class="pt-20 pb-20">Student Club Member</h4>
<p>
All users on MySpace will know that there are millions of <br>people out there. Every day besides.
</p>
</div>
</div>
<div class="col-lg-6 col-md-6 qty-right">
<div class="single-qly">
<h3 class="text-uppercase">IEEE - Geoscience and Remote Sensing Society (GRSS)</h3>
<p><b>Session: </b>2016 - Present</p>
<h4 class="pt-20 pb-20">Student Member</h4>
<p>
All users on MySpace will know that there are millions of <br>people out there. Every day besides.
</p>
</div>
<div class="btm-border d-block mx-auto"></div>
<div class="single-qly">
<h3 class="text-uppercase">Department of Mathematics & Computer Science Pi - Byte Club</h3>
<p><b>Session</b>: 2018 - Present</p>
<h4 class="pt-20 pb-20">Vice President</h4>
<p>
All users on MySpace will know that there are millions of <br>people out there. Every day besides.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End qualification Area -->
<!-- Start project Area -->
<section class="project-area section-gap" id="project">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="menu-content pb-70 col-lg-8">
<div class="title text-center">
<h1 class="mb-10">Latest Done Projects</h1>
<p>Research projects conducted during undergraduate studies.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 project-left">
<div class="single-project pb-100">
<a href="img/indianalibraryresize.jpg"><img class="img-fluid" src="img/indianalibraryresize.jpg" alt=""></a>
<h4 class="pt-100 pb-30"><a href="http://nia.ecsu.edu/ur/1617/teams/mmt/" target="_blanks">
Enhancing Interactivity and Engagement to the Science Gateway Community Institute Workforce Development Site</a></h4>
<p>
The Center of Excellence in Remote Sensing Education and Research (CERSER)
on the campus of Elizabeth City State University is a founding member of SGCI
led by San Diego Supercomputing Center and the Science Gateways Community Institute (SGCI).
One of the five areas of SGCI is the Workforce Development led by Dr. Linda Hayden.
Workforce Development aims to nurture the next generation of gateway users
and developers and engage the potential of students from underrepresented groups.
As science today grows increasingly computer based, it poses challenges and opportunities
for researchers. Scientists and engineers are turning to gateways to allow them to analyze,
share, and understand large volumes of data more effectively. The existence of science
and engineering gateways and the sophisticated cyberinfrastructure (CI) tools together
can significantly improve the productivity of researchers. Most importantly,
science gateways can give uniform access to the cyberinfrastructure that enables
cutting-edge science. The goal of the web development team was to increase the Interactivity
of the SGCI Young Professionals site to attract potential members and disseminate information.
This was completed utilizing WordPress Widgets to provide graphical and interactive components.
Bootstrap components (HTML, CSS, and JavaScript) were also researched for their inclusion into
the current WordPress Content Management System (CMS) and the future Liferay CMS.<br><br>
<strong>Keywords: SGCI, Science Gateways Community Institute, Bootstrap,<br>
HTML, CSS, JavaScript, WordPress, Liferay, widgets, components</strong><br>
</p>
</div>
</div>
<div class="col-lg-6 project-right">
<div class="single-project">
<h4 class="pt-30 pb-30"><a href="http://nia.ecsu.edu/ur/1718/summerinterns/bennett_SROC_Poster.pdf" target="_blanks">
Return Oriented Programming (ROP) based code reuse attack on Intel SGX</a></h4>
<p class=" pb-100">
Knowing the potential leakage inside SGX enclave caused by software
vulnerabilities, new understandings are needed to mitigate the threat. From that
which is known, two recent works are published on this topic. SGX-Shield at
NDSS'17 proposed load-time randomization, and "Hacking in Darkness: Return-
oriented Programming against Secure Enclaves" to appear at Usenix Security'17.
By following the research routine: a basic attack outside SGX to understand ROP,
the ROP attack inside SGX enclave, and JIT-ROP to bypass SGX-Shield. After we
can propose mitigation strategies, such as run-time live re-randomization. Both
parts of JIT-ROP inside SGX and run-time live re-randomization are research
problems we can try to solve.<br><br>
<strong>Keywords: Intel SGX, ROP, Enclaves, Re-Randomization</strong>
</p>
<a href="http://nia.ecsu.edu/ur/1617/teams/mmt/"><img class="img-fluid" src="img/research_2017.png" alt=""></a>
</div>
</div>
<div class="col-lg-6 project-left">
<div class="single-project pb-100">
<a href="http://nia.ecsu.edu/ur/1718/teams/remote/index.html"><img class="img-fluid" src="img/research_2018.png" alt=""></a>
<h4 class="pt-100 pb-30"><a href="https://hackdash.org/projects/59ea129d87d0970a0e0a3c36" target="_blanks">
User Experience and Learning Solutions: Transform user experience using AI technology (MD4Me)</a></h4>
<p>
Building a self learning Artifical Intelligence that aids individuals with therapeutic
conversation at a time of their choosing and in their own personalized space using Watson
APIs connected with IBM's Node-RED. <br><br>
<strong>Keywords: Artifical Intelligence, Watson, APIs, Self Learning</strong>
</p>
</div>
</div>
<div class="col-lg-6 project-right">
<div class="single-project">
<h4 class="pt-30 pb-30"><a href="http://nia.ecsu.edu/ur/1718/teams/remote/index.html" target="_blanks">
Use of Python Scripts to Compare and Contrast Photo Images</a></h4>
<p class=" pb-100">
In python there is an ability to write python scripts for a variety of projects.
For this project the python script was written to perform an image comparison.
This was done with various libraries that are included in the python language.
These libraries include Image, OpenCV, and etc. Thus, when importing these the
program would ask the user for two images and the size for the images the program
would display the pixel values for the images as well as display an image were
if the pixels of the two images matched the image would be "black out" for that
section. The team later found out that to compare the images the team needed to
resize the two images as well as that to have the program run on different computer
the necessary libraries needed to be on the new computer. Therefore, in the future
the team decided that the program would need to be more robust and efficient.<br><br>
<strong>Keywords: Python, Image Comparison</strong>
</p>
<a href="img/ibm_win.jpg"><img class="img-fluid" src="img/ibm_win.jpg" alt="">
</div>
</div>
<div class="col-lg-6 project-left">
<div class="single-project pb-100">
<a href="img/ibm_austin.JPG"><img class="img-fluid" src="img/ibm_austin.JPG" alt="" style="width: 100%"></a>
</div>
</div>
<div class="col-lg-6 project-right">
<div class="single-project">
<h4 class="pt-30 pb-30"><a href="img/CIS.pdf" target = "_blanks">
Performance Improvement for Cloud Internet Services</a></h4>
<p class=" pb-100">
IBM Cloud Internet Service (CIS) API was developed to process HTTP requests with the
assistance of cloudflare. With the production of the API, IBM needed the API to perform
at a higher level and produce/handle more than 100 request per second. To fix the problem,
a new python module was developed in reference to the pyCURL module. With the implementation
of the module, the system was able to produce more request with an overall improved performance.<br><br>
<strong>Keywords: Pycurl, Python, HTTP, TLS, IP, Requests, Web Application Firewall</strong>
</p>
</div>
</div>
<div class="col-lg-6 project-left">
<div class="single-project pb-100">
<h4 class="pt-100 pb-30"><a href="web/index.html" target="_blanks">
Data Analyzing Open Source Web Crawler</a></h4>
<p>
The web crawler is a open source system software, that allows the intended user to automatically
scape senior product's detail and reviews from a targeted company and stores the information.<br><br>
<strong>Keywords: Web Crawler, Open Source</strong>
</p>
</div>
</div>
<div class="col-lg-6 project-right">
<div class="single-project">
<a href="web/index.html"><img class="img-fluid" src="img/web_crawler.png" alt="" style="width: 100%"></a>
</div>
</div>
</div>
</div>
</section>
<!-- End project Area -->
<!-- start contact Area -->
<section class="contact-area section-gap" id="contact">
<div class="container">
<div class="row d-flex justify-content-center">
<div class="menu-content pb-20 col-lg-8">
<div class="title text-center">
<h1 class="mb-10">If you need, Just drop us a line</h1>
<p>Who are in extremely love with eco friendly system.</p>
</div>
</div>
</div>
<form class="form-area mt-60" id="myForm" action="mail.php" method="post" class="contact-form text-right">
<div class="row">
<div class="col-lg-6 form-group">
<input name="name" placeholder="Enter your name" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Enter your name'" class="common-input mb-20 form-control" required="" type="text">
<input name="email" placeholder="Enter email address" pattern="[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{1,63}$" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Enter email address'" class="common-input mb-20 form-control" required="" type="email">
<input name="subject" placeholder="Enter your subject" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Enter your subject'" class="common-input mb-20 form-control" required="" type="text">
</div>
<div class="col-lg-6 form-group">
<textarea class="common-textarea mt-10 form-control" name="message" placeholder="Messege" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Messege'" required=""></textarea>
<button class="primary-btn mt-20">Send Message<span class="lnr lnr-arrow-right"></span></button>
<div class="alert-msg">
</div>
</div></div>
</form>
</div>
</section>
<!-- end contact Area -->
<!-- start footer Area -->
<footer class="footer-area section-gap">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-6 col-sm-6">
<div class="single-footer-widget">
<h6>About Me</h6>
<p>
I am a undergraduate student at ECSU, studying in the field of computer science.
After graduation, I plan on starting a career in software development and then returning
to acquire my masters.
</p>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
<p class="footer-text">Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved | This template is made with <i class="fa fa-heart-o" aria-hidden="true"></i> by <a href="https://colorlib.com" target="_blank">Colorlib</a></p>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
</div>
</div>
<div class="col-lg-5 col-md-6 col-sm-6">
<div class="single-footer-widget">
<h6>Newsletter</h6>
<p>Stay update with our latest</p>
<div class="" id="mc_embed_signup">
<form target="_blank" novalidate="true" action="https://spondonit.us12.list-manage.com/subscribe/post?u=1462626880ade1ac87bd9c93a&id=92a4423d01" method="get" class="form-inline">
<div class="d-flex flex-row">
<input class="form-control" name="EMAIL" placeholder="Enter Email" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Enter Email '" required="" type="email">
<button class="click-btn btn btn-default"><i class="fa fa-long-arrow-right" aria-hidden="true"></i></button>
<div style="position: absolute; left: -5000px;">
<input name="b_36c4fd991d266f23781ded980_aefe40901a" tabindex="-1" value="" type="text">
</div>
</div>
<div class="info"></div>
</form>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6 col-sm-6 social-widget">
<div class="single-footer-widget">
<h6>Follow Us</h6>
<p>Let us be social</p>
<div class="footer-social d-flex align-items-center">
<a href="https://www.facebook.com/Disaiah.Bennett" target="_blanks"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a></li>
<a href="https://www.instagram.com/disaiah.bennett/" target="_blanks"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/disaiah-bennett-062153164/" target="_blanks"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End footer Area -->
<script src="js/vendor/jquery-2.2.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/jquery.ajaxchimp.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/parallax.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.sticky.js"></script>
<script src="js/main.js"></script>
</body>
</html>