-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (99 loc) · 6.36 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Amy Gurski | Software Developer</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Vollkorn+SC&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container-fluid">
<div class="row section" id = "welcome">
<header>
<div id = "top-nav">
<nav class="navbar navbar-expand-sm bg-light">
<ul class="navbar-nav">
<li class="nav-item"><a href="#projects" class = "nav-link">Projects</a></li>
<li class="nav-item"><a href="#about" class = "nav-link">About</a></li>
</ul>
</nav>
</div>
<div>
<h1>Amy Gurski</h1>
<p class="title">Software Developer</p>
<p class="title">Logically Minded <i class="fas fa-check""></i> Creative at Heart</p>
<a href="docs/Gurski_Amy_Resume.pdf" target="_blank" rel="noopener">
<button class="btn" id="resume">Resume</button>
</a>
</div>
</header>
</div>
<main>
<div class="row section justify-content-center" id="projects">
<h2>Projects</h2>
</div>
<div class="row">
<div class="card-deck col-lg-4 col-sm-10">
<div class="card">
<img class="card-img-top" src="img/weather_thumb.PNG" alt="Weather Forecast Project Screenshot" />
<div class="card-body">
<h5 class="card-title">National Park Weather Service</h5>
<p class="card-text">Created a dynamic web application with ASP.NET following the MVC design pattern. Uses C#, HTML, CSS, SQL database integration, and National Weather Service API. </p>
<a href="https://github.com/amygurski/National-Park-Weather-Service" class="btn">Code</a>
</div>
</div>
</div>
<div class="card-deck col-lg-4 col-sm-10">
<div class="card">
<img class="card-img-top" src="img/random-quote-machine_thumb.PNG" alt="Random Quote Generator Screenshot" />
<div class="card-body">
<h5 class="card-title">Random Quote Generator</h5>
<p class="card-text">Generates a random book lover quote. Practice with HTML, CSS, Javascript, Bootstrap, and jQuery.</p>
<a href="https://github.com/amygurski/random-quote-machine" class="btn ">Code</a>
<a href="http://amygurski.com/random-quote-machine/" class="btn ">Live</a>
</div>
</div>
</div>
<div class="card-deck col-lg-4 col-sm-10">
<div class="card">
<img class="card-img-top" src="img/vending-machine-thumb.PNG" alt="Vending Machine Project Screenshot" />
<div class="card-body">
<h5 class="card-title">Vending Machine</h5>
<p class="card-text">Created a Command Line Program vending machine utilizing object-oriented programming principles and File I/O.</p>
<a href="https://github.com/amygurski/Vending-Machine-Console-App" class="btn">Code</a>
</div>
</div>
</div>
</div>
<div class="row section justify-content-center" id="about">
<h2>About</h2>
</div>
<div class="row justify-content-left">
<div class="about-grid col-lg-9">
<p>I studied electrical engineering and global manufacturing at Boston University and have over 10 years' experience in customer-facing technical roles.</p>
<p>In my first job as an applications engineer, I partnered with customers around the globe. From factory floor to research lab applications, I would customize instruments to meet their requirements, which is where I first discovered my love for the creative and logical process of programming. Then my career took a direction I never imagined and I moved to England for 8 years where I worked as an inside sales manager.</p>
<p>While I enjoyed the consultative nature of technical sales, I missed being hands-on with tech. So when I moved to Cleveland, I started self-learning software development and obtained both the Responsive Web Design and Javascript certificates from freeCodeCamp. I also volunteered at CodeMash and took part in their Capture the Flag competition. Now I am attending Cleveland's coding bootcamp, Tech Elevator, and will be graduating in April 2020.</p>
<p>With my attention to detail, knack for problem solving, and passion for learning, my charge into software development has begun.</p>
</div>
<div class="about-grid col-lg-3">
<img src="img/amy.jpg" alt="Amy Gurski" id="me">
</div>
</div>
</main>
</div>
</body>
<footer class="page-footer mt-20">
<div class="container">
<div class="row">
<div class="col-md-12 py-5">
<div class="mb-5 flex-center">
<a href="https://github.com/amygurski" data-toggle="tooltip" title = "Github" target="_blank" rel="noopener"><i class="fab fa-github fa-3x mr-5 footer-link"></i></a>
<a href="https://www.linkedin.com/in/amygurski/" data-toggle="tooltip" title = "LinkedIn" target="_blank" rel="noopener"><i class="fab fa-linkedin mr-5 fa-3x footer-link""></i></a>
<a href="mailto:[email protected]?Subject=Web&Inquiry" data-toggle="tooltip" title = "e-mail" target="_top"><i class="fas fa-envelope-square mr-5 fa-3x footer-link"></i></a>
</div>
</div>
</div></div>
<div class="footer-copyright">Made with ♥ by Amy Gurski</div>
</footer>
</html>