-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (94 loc) · 4.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elizabeth Olsavsky</title>
<link rel="stylesheet" href="./assets/reset.css" />
<link rel="stylesheet" href="./assets/style.css " />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- header and nav -->
<header>
<nav class="nav">
<h1>Elizabeth Olsavsky</h1>
<ul class="nav-menu">
<li class="nav-link"><a href="#about">About</a></li>
<li class="nav-link"><a href="#work">Work</a></li>
<li class="nav-link"><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- (1) about -->
<section id="about">
<h2 class="top-section-header">About</h2>
<div class="column-section">
<!-- profile image -->
<div>
<img src="./assets/images/elizabeth.jpg" alt="Elizabeth Olsavsky" class="profile-img" />
</div>
<!-- about me -->
<div class="about">
<p>Former classroom teacher seeking entry level developer opportunities.
Current student of the UT full stack flex coding boot camp.
</p>
</div>
</div>
</section>
<!-- (2) work -->
<section id="work">
<h2 class="section-header">Work</h2>
<div class="section">
<div class="feature-project-card">
<a href="http://www.fusionfables.com/" target="_blank"><img
src="./assets/images/Fusion Fables.png" class="big-project-image" alt="Collaborative Writing Platform" /></a>
<div class="project-banner">Collaborative Writing Platform</div>
</div>
<div class="feature-project-card">
<a href="https://github.com/eeast/Dude-Wheres-My-Show" target="_blank"><img
src="./assets/images/group-project.png" class="big-project-image" alt="Streaming Services API" /></a>
<div class="project-banner">Search Streaming Services Group Project</div>
</div>
<div class="project-card">
<a href="https://github.com/elizabetholsavsky/weather-dashboard" target="_blank"><img src="./assets/images/weather-api.png"
class="project-image" alt="Five Day Weather Forecast" /></a>
<div class="project-banner">Five Day Weather Forecast</div>
</div>
<div class="project-card">
<a href="https://github.com/elizabetholsavsky/code-quiz" target="_blank"><img src="./assets/images/code-quiz.png"
class="project-image" alt="Code Quiz Game" /></a>
<div class="project-banner">Code Quiz Game</div>
</div>
<div class="project-card">
<a href="https://github.com/elizabetholsavsky/work-day-scheduler" target="_blank"><img src="./assets/images/work-scheduler.png"
class="project-image" alt="Work Day Scheduler" /></a>
<div class="project-banner">Work Day Scheduler</div>
</div>
</div>
</section>
<!-- (3) contact -->
<section id="contact">
<h2 class="section-header">Contact</h2>
<div class="section">
<ul class="contact-list">
<li>elizabetholsavsky@gmail.com</li>
<li>
<a href="https://mail.google.com/mail/?view=cm&fs=1&to=elizabetholsavsky@gmail.com" target="_blank">Gmail</a>
</li>
<li>
<a href="https://github.com/elizabetholsavsky" target="_blank">GitHub</a>
</li>
<li>
<a href="https://www.linkedin.com/in/elizabetholsavsky/" target="_blank">LinkedIn</a>
</li>
</ul>
</div>
</section>
</main>
</body>
</html>