-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·707 lines (683 loc) · 44.2 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
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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
<!doctype html>
<html lang="en">
<head>
<title> enavu.io </title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keywords" content="creative, cv, designer, online cv, online resume, powerful portfolio, professional, professional resume, responsive, resume, vcard " />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- FAV AND ICONS -->
<link rel="shortcut icon" href="">
<link rel="shortcut icon" href="assets/images/apple-icon.png">
<link rel="shortcut icon" sizes="72x72" href="assets/images/apple-icon-72x72.png">
<link rel="shortcut icon" sizes="114x114" href="assets/images/apple-icon-114x114.png">
<!-- Google Font-->
<link href="http://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="assets/icons/font-awesome-4.7.0/css/font-awesome.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/plugins/css/bootstrap.min.css">
<!-- Animate CSS-->
<link rel="stylesheet" href="assets/plugins/css/animate.css">
<!-- Owl Carousel CSS-->
<link rel="stylesheet" href="assets/plugins/css/owl.css">
<!-- Fancybox-->
<link rel="stylesheet" href="assets/plugins/css/jquery.fancybox.min.css">
<!-- Custom CSS-->
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- Colors -->
<link rel="alternate stylesheet" href="assets/css/colors/blue.css" title="blue">
<link rel="stylesheet" href="assets/css/colors/defauld.css" title="defauld">
<link rel="alternate stylesheet" href="assets/css/colors/green.css" title="green">
<link rel="alternate stylesheet" href="assets/css/colors/blue-munsell.css" title="blue-munsell">
<link rel="alternate stylesheet" href="assets/css/colors/orange.css" title="orange">
<link rel="alternate stylesheet" href="assets/css/colors/purple.css" title="purple">
<link rel="alternate stylesheet" href="assets/css/colors/slate.css" title="slate">
<link rel="alternate stylesheet" href="assets/css/colors/yellow.css" title="yellow">
</head>
<body class="dark-vertion black-bg">
<!-- Start Loader -->
<div class="section-loader">
<div class="loader">
<div></div>
<div></div>
</div>
</div>
<!-- End Loader -->
<!--
===================
NAVIGATION
===================
-->
<header class="black-bg mh-header mh-fixed-nav nav-scroll mh-xs-mobile-nav wow fadeInUp" id="mh-header">
<div class="overlay"></div>
<div class="container">
<div class="row">
<nav class="navbar navbar-expand-lg mh-nav nav-btn">
<a class="navbar-brand" href="#">
<img src="" alt="" class="img-fluid">
<!-- <h2>Maha</h2> -->
</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="navbar-toggler-icon icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-0 ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#mh-home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#mh-about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#mh-skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#mh-experience">Experiences</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#mh-blog">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#mh-contact">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<!--
===================
HOME
===================
-->
<section class="mh-home" id="mh-home">
<div class="home-ovimg">
<div class="container">
<div class="row xs-column-reverse section-separator vertical-middle-content home-padding">
<div class="col-sm-6">
<div class="mh-header-info">
<div class="mh-promo wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">
<span>Hello I'm</span>
</div>
<h2 class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">Ena Vu</h2>
<h4 class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s">Database/Software Engineer | Tableau Viz</h4>
<ul>
<li class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s"><i class="fa fa-envelope"></i><a href="mailto:">[email protected]</a></li>
<li class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.5s"><i class="fa fa-phone"></i><a href="callto:">7203522737</a></li>
</ul>
<ul class="social-icon wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s">
<li><a href="https://www.linkedin.com/in/enavu/"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-6">
<div class="hero-img wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.6s">
<div class="img-border">
<img src="assets/images/ena.png" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
==================
ABOUT
=================
-->
<section class="mh-about" id="mh-about">
<div class="container">
<div class="row section-separator">
<div class="col-sm-12 col-md-6">
<div class="mh-about-img shadow-2 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">
<img src="assets/images/1962.png" alt="" class="img-fluid">
</div>
</div>
<div class="col-sm-12 col-md-6">
<div class="mh-about-inner">
<h2 class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.1s">About Me</h2>
<p class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">Hello, I’m a Ena, an engineer/developer based in Denver.
I have rich experience in web site design & building
and customization. Also I am good at</p>
<div class="mh-about-tag wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s">
<ul>
<li><span>sql</span></li>
<li><span>hadoop</span></li>
<li><span>unix/bash</span></li>
<li><span>scala</span></li>
<li><span>python</span></li>
<li><span>c#</span></li>
<li><span>angularJS</span></li>
<li><span>javascript</span></li>
<li><span>tableau</span></li>
<li><span>agile</span></li>
</ul>
</div>
<a href="assets/images/EnaVuResume.pdf" target="_blank" class="btn btn-fill wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">Downlaod CV <i class="fa fa-download"></i></a>
</div>
</div>
</div>
</div>
</section>
<!--
===================
SERVICE
===================
-->
<section class="mh-service">
<div class="container">
<div class="row section-separator">
<div class="col-sm-12 text-center section-title wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">
<h3>What I do</h3>
</div>
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="mh-service-item shadow-1 dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s">
<i class="fa fa-bullseye purple-color"></i>
<h3>Data Engineer</h3>
<p>
Automating and designing a data ingestion flow, to data procesing and to data analytics.
Have understood 5+ reports, where they originate from and how to do automated validation checks with trending from previous days loads to the next for threshold duplicate or missing file checks. My most accomplished data loads re-engineering was automating flows with dependencies and checks so developers can focus on reporting instead of data loads utilizing scala, hql and bash in a hadoop ecosystem.
</p>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="mh-service-item shadow-1 dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.5s">
<i class="fa fa-code iron-color"></i>
<h3>Web Development</h3>
<p>
I have worked on web apps of ASP.NET Core, MVC, Entity Framework Core, Bootstrap, and AngularJS of basic CRUD tracking systems; general information small business websites and airline industry services. I have solved company problems from not having a tracking system other than excel and word documents, to no universal information sharing and just maintaining and updating websites of industries of the government, small businesses and airline industries.
My most succesful project has to be with a small business, visit www.mainstreamnails.com for more details!
</p>
</div>
</div>
</div>
<br>
<br>
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="mh-service-item shadow-1 dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s">
<i class="fa fa-object-ungroup sky-color"></i>
<h3 class="text">App Development</h3>
<p>
Solving QA Manual tasks by automating an application to check that the website is functioning correclty with humar readible error messages, allows QA developers to focus on other creative skills to QA manual items. My most succesful problem I have solved is centralizing a governments case tracking system and allowing them to go to one place to find their notes and verus going through folders to find they may have saved files over the other.
</p>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="mh-service-item shadow-1 dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s">
<i class="fa fa-bullseye purple-color"></i>
<h3>Data Viz</h3>
<p>
Anyone can create something beautiful. It is not about the beauty of the report but story telling. My most favorite visualization projects has been from taking a visualization, revamping the ETL layer, add grouping sets and having a performant backend to tableau then laying out the the report so it tells a story in a Z directional approach of placement. I also replaced all the busy aspects of the report and focused on bar graphs and lines that can visually tell the trend of the product right immedately.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
===================
SKILLS
===================
-->
<section class="mh-skills" id="mh-skills">
<div class="container">
<div class="row section-separator">
<div class="section-title text-center col-sm-12">
<!--<h2>Skills</h2>-->
</div>
<div class="col-sm-12 col-md-6">
<div class="mh-skills-inner">
<div class="mh-professional-skill wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s">
<h3>Technical Skills</h3>
<div class="each-skills">
<div class="candidatos">
<div class="parcial">
<div class="info">
<div class="nome">Data Engineering: Bash, Unix</div>
<div class="percentagem-num">86%</div>
</div>
<div class="progressBar">
<div class="percentagem" style="width: 86%;"></div>
</div>
</div>
</div>
<div class="candidatos">
<div class="parcial">
<div class="info">
<div class="nome">Data Engineering: Hadoop/Big Data</div>
<div class="percentagem-num">86%</div>
</div>
<div class="progressBar">
<div class="percentagem" style="width: 86%;"></div>
</div>
</div>
</div>
<div class="candidatos">
<div class="parcial">
<div class="info">
<div class="nome">
OOP: C#/Scala
</div>
<div class="percentagem-num">70%</div>
</div>
<div class="progressBar">
<div class="percentagem" style="width: 70%;"></div>
</div>
</div>
</div>
<div class="candidatos">
<div class="parcial">
<div class="info">
<div class="nome">Web Development: Python, JavaScript</div>
<div class="percentagem-num">59%</div>
</div>
<div class="progressBar">
<div class="percentagem" style="width: 59%;"></div>
</div>
</div>
</div>
<div class="candidatos">
<div class="parcial">
<div class="info">
<div class="nome">Web Development: Jquery, AngularJS</div>
<div class="percentagem-num">59%</div>
</div>
<div class="progressBar">
<div class="percentagem" style="width: 59%;"></div>
</div>
</div>
</div>
<div class="candidatos">
<div class="parcial">
<div class="info">
<div class="nome">Dev Ops: Jenkins, azkaban</div>
<div class="percentagem-num">80%</div>
</div>
<div class="progressBar">
<div class="percentagem" style="width: 80%;"></div>
</div>
</div>
</div> <div class="candidatos">
<div class="parcial">
<div class="info">
<div class="nome">Dev Ops: gitlab, github</div>
<div class="percentagem-num">80%</div>
</div>
<div class="progressBar">
<div class="percentagem" style="width: 80%;"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6">
<div class="mh-professional-skills wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.5s">
<h3>Professional Skills</h3>
<ul class="mh-professional-progress" >
<li>
<div class="mh-progress mh-progress-circle" data-progress="95"></div>
<div class="pr-skill-name">Communication</div>
</li>
<li>
<div class="mh-progress mh-progress-circle" data-progress="95"></div>
<div class="pr-skill-name">Team Work</div>
</li>
<li>
<div class="mh-progress mh-progress-circle" data-progress="75"></div>
<div class="pr-skill-name">Project Management</div>
</li>
<li>
<div class="mh-progress mh-progress-circle" data-progress="70"></div>
<div class="pr-skill-name">Creativity</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--
===================
Experience
===================
-->
<section class="mh-experince" id="mh-experience">
<div class="bolor-overlay">
<div class="container">
<div class="mh-work">
<div class="mh-experience-deatils">
<h3>Experiences</h3>
<!-- Experiences Institutes-->
<div class="row">
<div class="col-sm-12 col-md-4">
<div class="mh-work-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">
<h4>Team Lead | Sr. Mobile Insignt Developer From <a href="">Charter Communications</a></h4>
<div class="mh-eduyear">2018-present</div>
<span>Responsibility :</span>
<ul class="work-responsibility">
<li><i class="fa fa-circle"></i>Design Data Ingestion Flow</li>
<li><i class="fa fa-circle"></i>Design Data ETL Aggregation for reporting</li>
<li><i class="fa fa-circle"></i>Design Data Visualization in Tableau</li>
<li><i class="fa fa-circle"></i>Project Manage with Team/Stakeholders with Intake and Delivery Process using Agile Methodologies</li>
</ul>
</div>
</div>
<!-- Experienece Institutes-->
<div class="col-sm-12 col-md-4">
<div class="mh-work-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.6s">
<h4>Web Developer | Owner From <a href="www.mainstreamnails.com">Mainstream Nails</a></h4>
<div class="mh-eduyear">2018-present</div>
<span>Responsibility :</span>
<ul class="work-responsibility">
<li><i class="fa fa-circle"></i>Developed business website www.mainstreamnails.com</li>
<li><i class="fa fa-circle"></i>Successful co-ownership of a business who has been featured in CBS4, 9News, OPI.com and other top nail outlets.</li>
<li><i class="fa fa-circle"></i>Manage financials with accounts payables. </li>
</ul>
</div>
</div>
<!-- Experienece Institutes-->
<div class="col-sm-12 col-md-4">
<div class="mh-work-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s">
<h4>Solutions Developer From <a href="">Avanade</a></h4>
<div class="mh-eduyear">2018-2018</div>
<span>Responsibility :</span>
<ul class="work-responsibility">
<li><i class="fa fa-circle"></i>
Client-based work at Charter Communications Support Spectrum Mobile Insights
</li>
<li><i class="fa fa-circle"></i>Lead and organized internal Call and Learns so the Southwest Region is aware of all client-based work with presentations from Angular topics to client experience.</li>
</ul>
</div>
</div>
</div>
<br>
<div class="row">
<!-- Experienece Institutes-->
<div class="col-sm-12 col-md-4">
<div class="mh-work-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s">
<h4>Consultant | Software Developer From <a href="">Brainspire Solutions</a></h4>
<div class="mh-eduyear">2017-2018</div>
<span>Responsibility :</span>
<ul class="work-responsibility">
<li><i class="fa fa-circle"></i>Client based development at Frontier Airlines and Vail Resorts.</li>
<li><i class="fa fa-circle"></i>
Microsoft tools performing web development, automation and point of sales redevelopment with C#, JavaScript, Selenium, APIs.</li>
</ul>
</div>
</div>
<!-- Experienece Institutes-->
<div class="col-sm-12 col-md-4">
<div class="mh-work-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s">
<h4>Sr. Programmer Analyst From <a href="">City and County of Denver | The Office of the Independent Monitor</a></h4>
<div class="mh-eduyear">2014-2017</div>
<span>Responsibility :</span>
<ul class="work-responsibility">
<li><i class="fa fa-circle"></i>
Created a case tracking system on a web App with ASP.NET Core, MVC, Entity Framework Core, Bootstrap, and Angular
</li>
<li><i class="fa fa-circle"></i>Data Analysis with SQL for Annual and Mid Year reports mandated by the City around Police Misconduct Cases in SPSS</li>
</ul>
</div>
</div>
<!-- Experienece Institutes-->
<div class="col-sm-12 col-md-4">
<div class="mh-work-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s">
<h4>Project Coordinator | Developer From <a href=""> University of Colorado Denver | Center on Domestic Violence</a></h4>
<div class="mh-eduyear">2012-2014</div>
<span>Responsibility :</span>
<ul class="work-responsibility">
<li><i class="fa fa-circle"></i>Created a case tracking system in MS Access</li>
<li><i class="fa fa-circle"></i>Coordinated graduate courses, 5+ events/workshops of 100+ attendees</li>
<li><i class="fa fa-circle"></i>Analyzed pre and post survey of graduate courses, 5+ events/workshops of 100+ attendees in SPSS</li>
</ul>
</div>
</div>
</div>
<br>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
===================
Education
===================
-->
<br>
<section class="mh-experince" id="mh-experience">
<div class="bolor-overlay">
<div class="container">
<div class="mh-work">
<div class="mh-experience-deatils">
<h3>Education</h3>
<!-- Education Institutes-->
<div class="row">
<div class="col-sm-12 col-md-6">
<div class="mh-work-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">
<h4>Bachelors of Science Mathematics, Actuarial option From <a href="">University of Colorado, Denver</a></h4>
<div class="mh-eduyear">2002-2008</div>
</div>
</div>
<!-- Education Institutes-->
<div class="col-sm-12 col-md-6">
<div class="mh-work-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.6s">
<h4>Master of Arts Criminal Justoce, Domestic Violence concentration From <a href="">University of Colorado, Denver</a></h4>
<div class="mh-eduyear">2008-2011</div>
</div>
</div>
</div>
<br>
<div class="row">
<!-- Education Institutes-->
<div class="col-sm-12 col-md-6">
<div class="mh-work-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s">
<h4>Masters of Science Data Science From <a href="">Regis University</a></h4>
<div class="mh-eduyear">2019-present</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
===================
BLOG
===================
-->
<section class="mh-blog" id="mh-blog">
<div class="container">
<div class="row section-separator">
<div class="col-sm-12 section-title wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">
<h3>Featured Posts</h3>
</div>
<div class="col-sm-12 col-md-4">
<div class="mh-blog-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s">
<img src="assets/images/dev.png" alt="" class="img-fluid">
<div class="blog-inner">
<h2><a href="http://enavu.io/LR" target="_blank">Linear Regression with Python</a></h2>
<div class="mh-blog-post-info">
<ul>
<li><strong>Post On</strong><a href="http://enavu.io/LR" target="_blank">29.05.19</a></li>
<li><strong>By</strong><a href="http://enavu.io/LR" target="_blank">Ena Vu</a></li>
</ul>
</div>
<a href="http://enavu.io/LR" target="_blank">Read More</a>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="mh-blog-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img src="assets/images/www.png" alt="" class="img-fluid">
<div class="blog-inner">
<h2><a href="https://www.linkedin.com/posts/enavu_manicures-pedicures-sculpted-sets-gel-x-activity-6663098112455827458-fXE6">Mainstream Nails' website launch</a></h2>
<div class="mh-blog-post-info">
<ul>
<li><strong>Post On</strong><a href="https://www.linkedin.com/posts/enavu_manicures-pedicures-sculpted-sets-gel-x-activity-6663098112455827458-fXE6" target="_blank">24.05.20</a></li>
<li><strong>By</strong><a href="https://www.linkedin.com/posts/enavu_manicures-pedicures-sculpted-sets-gel-x-activity-6663098112455827458-fXE6" target="_blank">Ena Vu</a></li>
</ul>
</div>
<a href="https://www.linkedin.com/posts/enavu_manicures-pedicures-sculpted-sets-gel-x-activity-6663098112455827458-fXE6" target="_blank">Read More</a>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="mh-blog-item dark-bg wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s">
<img src="assets/images/connected.png " alt="" class="img-fluid">
<div class="blog-inner">
<h2><a href="https://www.linkedin.com/posts/enavu_reflect-macbook-develop-activity-6671088962532114432-mcUf" target="_blank">Being intuned with Learning</a></h2>
<div class="mh-blog-post-info">
<ul>
<li><strong>Post On</strong><a href="https://www.linkedin.com/posts/enavu_reflect-macbook-develop-activity-6671088962532114432-mcUf" target="_blank">29.05.20</a></li>
<li><strong>By</strong><a href="https://www.linkedin.com/posts/enavu_reflect-macbook-develop-activity-6671088962532114432-mcUf" target="_blank">Ena Vu</a></li>
</ul>
</div>
<a href="https://www.linkedin.com/posts/enavu_reflect-macbook-develop-activity-6671088962532114432-mcUf" target="_blank">Read More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
===================
FOOTER 1
===================
-->
<footer class="mh-footer" id="mh-contact">
<div class="map-image image-bg">
<div class="container">
<div class="row section-separator">
<div class="col-sm-12 section-title wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">
<h3>Contact Me</h3>
</div>
<div class="col-sm-12 mh-footer-address">
<div class="row">
<div class="col-sm-12 col-md-4">
<div class="mh-address-footer-item dark-bg shadow-1 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s">
<div class="each-icon">
<i class="fa fa-location-arrow"></i>
</div>
<div class="each-info">
<h4>Address</h4>
<address>
Denver
</address>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="mh-address-footer-item dark-bg shadow-1 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.5s">
<div class="each-icon">
<i class="fa fa-envelope-o"></i>
</div>
<div class="each-info">
<h4>Email</h4>
<a href="mailto:[email protected]">[email protected]</a><br>
</div>
</div>
</div>
<div class="col-sm-12 col-md-4">
<div class="mh-address-footer-item dark-bg shadow-1 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.7s">
<div class="each-icon">
<i class="fa fa-phone"></i>
</div>
<div class="each-info">
<h4>Phone</h4>
<a href="callto:(720)-352-2737">(720)-352-2737</a><br>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s">
<form id="contactForm" class="single-form quate-form wow fadeInUp" data-toggle="validator">
<div id="msgSubmit" class="h3 text-center hidden"></div>
<div class="row">
<div class="col-md-6 col-sm-12">
<input name="name" class="contact-name form-control" id="name" type="text" placeholder="First Name" required>
</div>
<div class="col-md-6 col-sm-12">
<input name="name" class="contact-email form-control" id="L_name" type="text" placeholder="Last Name" required>
</div>
<div class="col-sm-12">
<input name="name" class="contact-subject form-control" id="email" type="email" placeholder="Your Email" required>
</div>
<div class="col-sm-12">
<textarea class="contact-message" id="message" rows="6" placeholder="Your Message" required></textarea>
</div>
<!-- Subject Button -->
<div class="btn-form col-sm-12">
<button type="submit" class="btn btn-fill btn-block" id="form-submit">Send Message</button>
</div>
</div>
</form>
</div>
<div class="col-sm-12 mh-copyright wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.3s">
<div class="row">
<div class="col-sm-6">
<div class="text-left text-xs-center">
</div>
</div>
<div class="col-sm-6">
<ul class="social-icon">
<li><a href="https://www.linkedin.com/in/enavu/"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<!--
==============
* JS Files *
==============
-->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<!-- jQuery -->
<script src="assets/plugins/js/jquery.min.js"></script>
<!-- popper -->
<script src="assets/plugins/js/popper.min.js"></script>
<!-- bootstrap -->
<script src="assets/plugins/js/bootstrap.min.js"></script>
<!-- owl carousel -->
<script src="assets/plugins/js/owl.carousel.js"></script>
<!-- validator -->
<script src="assets/plugins/js/validator.min.js"></script>
<!-- wow -->
<script src="assets/plugins/js/wow.min.js"></script>
<!-- mixin js-->
<script src="assets/plugins/js/jquery.mixitup.min.js"></script>
<!-- circle progress-->
<script src="assets/plugins/js/circle-progress.js"></script>
<!-- jquery nav -->
<script src="assets/plugins/js/jquery.nav.js"></script>
<!-- Fancybox js-->
<script src="assets/plugins/js/jquery.fancybox.min.js"></script>
<!-- isotope js-->
<script src="assets/plugins/js/isotope.pkgd.js"></script>
<script src="assets/plugins/js/packery-mode.pkgd.js"></script>
<!-- Map api -->
<script src="http://maps.googleapis.com/maps/api/js?v=3.exp&key=AIzaSyCRP2E3BhaVKYs7BvNytBNumU0MBmjhhxc"></script>
<!-- Custom Scripts-->
<script src="assets/js/map-init.js"></script>
<script src="assets/js/custom-scripts.js"></script>
</body>
</html>