-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
516 lines (490 loc) · 19.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="Description" content="Zhana Dougherty's Portfolio" />
<meta
name="keywords"
content="portfolio, projects, zppd, Zhana Dougherty, front-end developer"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Montserrat|Roboto|Sofia"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.13/css/all.css"
integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
crossorigin="anonymous"
/>
<title>Portfolio</title>
</head>
<body class="bg-light">
<header id="home" role="banner">
<nav
id="navbar"
class="navbar navbar-expand-lg fixed-top navbar-dark bg-dark"
role="navigation"
aria-label="Main Navigation"
>
<a
class="navbar-brand"
href="#"
translate="Brand"
aria-label="Zhana Dougherty"
>Zhana Dougherty</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"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="nav nav-pills ml-auto">
<li class="nav-item">
<a class="nav-link text-light" href="#about" translate="ABOUT"
>About</a
>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#work" translate="WORK"
>Projects</a
>
</li>
<li class="nav-item">
<a
class="nav-link text-light"
href="#social-contact"
translate="CONTACT"
>Contact</a
>
</li>
<li class="nav-item dropdown pr-3">
<a
class="nav-link dropdown-toggle"
data-toggle="dropdown"
href="#"
role="button"
aria-haspopup="true"
aria-expanded="false"
>Language</a
>
<div class="dropdown-menu">
<a class="lng-en" href="#">EN</a><br />
<a class="lng-bg" href="bg/index-bg.html">BG</a>
</div>
</li>
<!-- Drop down -->
<!--
<li class="nav-item dropdown pr-3">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Menu</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#one">Project one</a>
<a class="dropdown-item" href="#two">Project two</a>
<a class="dropdown-item" href="#three">Project three</a>
<div role="separator" class="dropdown-divider"></div>
<a class="dropdown-item" href="#contact">Contact me</a>
</div>
</li>
--></ul>
</div>
</nav>
<!-- Menu Bar -->
<!--
<nav id="navbar" class="navbar fixed-top navbar-dark bg-dark">
<a class="navbar-brand" href="#">Zhana Dougherty</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#menu" aria-controls="navbars" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="menu">
<ul class="navbar-nav text-center">
<li class="nav-item active">
<a class="nav-link" href="#home">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About me</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="https://example.com" id="dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Projects</a>
<div class="dropdown-menu" aria-labelledby="dropdown">
<a class="dropdown-item" href="#one">Project one</a>
<a class="dropdown-item" href="#two">Project two</a>
<a class="dropdown-item" href="#three">Project three</a>
</div>
</li>
<li class="nav-item">
<a class="nav-item disabled" href="#contact">Contact me</a>
</li>
</ul>
</div>
</nav>
-->
<section class="background-image">
<div class="over"></div>
<h1 class="title" translate="TITLE" aria-label="portfolio zppd">
<span class="pborder">Hello</span>
</h1>
<p class="intro">
<span class="pborder">I am a Front-End Developer</span>
</p>
</section>
</header>
<!-- About and Work -->
<main role="main">
<section class="container-fluid">
<div class="content text-center">
<!-- <div id="hello" class="bg-dark text-light"> -->
<div class="row bg-dark text-light">
<div class="col-sm-6 about-img-flex">
<img
class="about-img"
src="img/zhana.jpg"
alt="Zhana Dougherty"
/>
</div>
<div class="col-sm-6 ">
<h2 id="about" translate="ABOUT_ME" aria-labelledby="About">
About Me
</h2>
<p id="info" translate="INFO">
Welcome!<br />
I am Zhana and this is my portfolio website. <br />
I live and work in USA, but i was born and raised in Bulgaria,
where I got my Bachelors degree in Computer Engineering. <br />
I am a passionate developer, and love to stay up to date with
the latest in web development technology. This website is one of
the many projects i have been working on in the last year. I
enjoy creating websites and I am mostly using
<strong><span class="stack">HTML5</span></strong
>, <strong><span class="stack">CSS3</span></strong
>, <strong><span class="stack">SCSS</span></strong
>, <strong><span class="stack">JavaScript</span></strong> and
<strong><span class="stack">ReactJS</span></strong> in my work.
<br />
I am a person with many interests and hobbies. I like hiking,
jogging and spending time with friends and family.
</p>
</div>
<!-- </div> -->
</div>
<div id="work" class="container bg-white" aria-label="Projects">
<h3 translate="WORK">Work</h3>
<hr class="work" />
<br />
<!-- <div id="projects" class="bg-light"> -->
<!-- Project 1 -->
<div class="row">
<div class="col-sm-6 project-one-left">
<h4 id="one" translate="ONE">Movie App</h4>
<p translate="NEWS">
Movie info application, build with React, Redux and custom
CSS. I am using fetch API for making requests and fetching the
information from The Movie DB. Here you can look up your
favorite movie, find more information about the actors or
discover new movies and shows from the discover link.
</p>
<a
href="https://github.com/ZPPD/MovieApp"
class="view-code bg-dark text-center p-2"
><i class="fab fa-github"></i> View code</a
>
</div>
<div class="col-sm-6 project-one-right">
<div class=" portfolio-item">
<a target="_blank" href="https://zppd.github.io/MovieApp/#/">
<img
class=" img-fluid"
src="img/movieApp.png"
alt="Movie App Project"
/></a>
</div>
</div>
</div>
<hr />
<!-- Project 2 -->
<div class="row">
<div class="col-sm-6 project-one-right order-sm-2">
<h4 id="four" translate="FOUR">RJD Heating and Cooling</h4>
<p translate="STATUS">
This is a website for a Heating and Cooling company.For
creating it I have used Bootstrap, HTML5, custom CSS, and
JavaScript. I have implemented HTML tables and forms, CSS
hovering effects, JavaScript event listeners. I am also using
Google Maps API for the Contact page.
</p>
<a
href="https://github.com/ZPPD/hvac"
class="view-code bg-dark text-center p-2"
><i class="fab fa-github"></i> View code</a
>
</div>
<div class="col-sm-6 project-one-left order-sm-1">
<div class="portfolio-item ">
<a target="_blank" href="https://zppd.github.io/hvac/"
><img
class="img-fluid"
src="img/hvac.png"
alt="Heating and Cooling Project"
/></a>
</div>
</div>
</div>
<hr />
<!-- Project 3 -->
<div class="row">
<div class="col-sm-6 project-one-left">
<h4 id="five" translate="FIVE">Tech Solutions</h4>
<p translate="Tech">
A modern website for a company named Tech Solutions. I have
built it using SASS pre-processor, which is compiled to
regular CSS. I am using ApexCharts.js for the dashboard. For
the news page, I am making requests to newsapi.org, using
async await and DOM manipulation.
</p>
<a
href="https://github.com/ZPPD/TechSolutions"
class="view-code bg-dark text-center p-2"
><i class="fab fa-github"></i> View code</a
>
</div>
<div class="col-sm-6 project-one-right">
<div class="portfolio-item ">
<a
target="_blank"
href="https://zppd.github.io/TechSolutions/"
><img
class="img-fluid"
src="img/techSolutions.png"
alt="Tech Solutions"
/></a>
</div>
</div>
</div>
<hr />
<!-- Project 4 -->
<div class="row">
<div class="col-sm-6 project-one-right order-sm-2">
<h4 id="five" translate="FIVE">Cafe Website</h4>
<p translate="CAFE">
In this web site I have used my responsive design knowledge.
This is a minimalist website, that changes its layout when on
mobile mode. I have used HTML and CSS. I have used media
queries for the responsiveness.
</p>
<a
href="https://github.com/ZPPD/ZPPD.github.io/tree/master/Website"
class="view-code bg-dark text-center p-2"
><i class="fab fa-github"></i> View code</a
>
</div>
<div class="col-sm-6 project-one-left order-sm-1">
<div class="portfolio-item ">
<a target="_blank" href="Website/index.html"
><img
class="img-fluid"
src="img/cofeeShop.png"
alt="Responsive Project"
/></a>
</div>
</div>
</div>
<hr />
<!-- Project 5 -->
<div class="row">
<div class="col-sm-6 project-one-right order-sm-1">
<h4 id="seven" translate="SEVEN">Quiz</h4>
<p translate="QUIZ">
This is a simple JavaScript quiz, for which i used HTML, CSS,
Bootstrap 4 and jQuery. The next button can be clicked on only
if the correct answer was selected. The quiz is also
responsive and can be done on a mobile phone.
</p>
<a
href="https://github.com/ZPPD/ZPPD.github.io/tree/master/Test"
class="view-code bg-dark text-center p-2"
><i class="fab fa-github"></i> View code</a
>
</div>
<div class="col-sm-6 project-one-left order-sm-2">
<div class="portfolio-item ">
<a target="_blank" href="Test/index.html"
><img
class="img-fluid"
src="img/Test.png"
alt="Quiz Project"
/></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Why Section -->
<section class="why text-center m-5 p-5">
<h2>Why work with me?</h2>
<div class="row">
<div class="col-sm-4">
<div class="why-icon">
<i class="fas fa-code fa-3x"></i>
</div>
<div>
<h3 class="why-text">Passionate Developer</h3>
<p>
Always give 100% commintment with anything you do. But 110% with
what you love.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="why-icon">
<i class="fas fa-book-open fa-3x"></i>
</div>
<div>
<h3 class="why-text">Quick Learner</h3>
<p>
Ability to process and aquire new skills along the way. Always
eager to discover new lands.
</p>
</div>
</div>
<div class="col-sm-4">
<div class="why-icon">
<i class="fas fa-users fa-3x"></i>
</div>
<div>
<h3 class="why-text">Team Player</h3>
<p>
It's great to have others around for input and also to learn
from. In return, you should always be willing to share your
thoughts and knowledge of what we picked up alont the way.
</p>
</div>
</div>
</div>
</section>
</main>
<!-- Contact -->
<!-- <section id="contact" class='bg-white' aria-label='Contact Form'>
<div class="container px-sm-5">
<div class="row">
<div class="col align-self-center">
<div class='mb-5 text-center'>
<h2>Connect With Me</h2>
<p>Want to get in touch? Feel free to send an email, or connect with me on Linked In.</p>
</div>
<form class='pt-sm-3'>
<div class="form-group has-success">
<label class="control-label">Name:</label>
<input id="name" class="form-control p-sm-3" type="text" name="name" value="" placeholder="Enter Name">
</div>
<div class="form-group has-success">
<label for="Email" class="control-label">Email:</label>
<input id="email" class="form-control p-sm-3" type="email" name="email" value="" placeholder="Enter e-mail">
</div>
<div class="form-group">
<label class="control-label">Subject:</label>
<input class="form-control p-sm-3" type="text" name="subject" value="" placeholder="Subject">
</div>
<div class="form-group has-success">
<label for="message" class="control-label">Message:</label>
<textarea id="msg" class="form-control p-sm-3" name="msg" rows="4" value="" placeholder="Enter Message"></textarea>
</div>
<div class="form-group">
<button id="btn" class="btn bg-dark float-right py-2" type="submit">Send</button>
</div>
</form>
</div>
<div class="col-m-7 col-sm-7">
</div>
</div>
</div>
</section> -->
<!-- Contact social -->
<div class="contact-background">
<div class="overlay"></div>
<div id="social-contact" aria-label="Contact information">
<div class="container">
<div class="row">
<!-- <div class="col"></div> -->
<div class="social col align-self-center">
<ul class="list-inline text-center">
<li class="list-inline-item">
<a
target="_blank"
class="btn-social"
href="https://www.linkedin.com/in/zhanadougherty/"
><i class="fab fa-linkedin-in"></i
></a>
</li>
<li class="list-inline-item">
<a
target="_blank"
class="btn-social"
href="mailto:[email protected]"
><i class="fa fa-envelope"></i
></a>
</li>
<li class="list-inline-item">
<a
target="_blank"
class="btn-social"
href="https://www.codecademy.com/arcSolver79091"
><i class="fas fa-code"></i
></a>
</li>
<li class="list-inline-item">
<a
target="_blank"
class="btn-social"
href="https://github.com/ZPPD"
><i class="fab fa-github"></i
></a>
</li>
</ul>
</div>
<!-- <div class="col"></div> -->
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer
class="text-muted bg-dark m-0 p-2"
role="contentinfo"
aria-label="zppd"
>
<div class="container">
<p class="float-right">
<a href="#home" translate="FOOTER">Back to top</a>
</p>
<p>ZPPD © 2019</p>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"
></script>
<!-- <script src="js/translate.js"></script> -->
<script src="https://unpkg.com/scrollreveal/dist/scrollreveal.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>