-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
74 lines (70 loc) · 4.27 KB
/
resume.html
File metadata and controls
74 lines (70 loc) · 4.27 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.grey-red.min.css">
<script src="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href='https://fonts.googleapis.com/css?family=Arvo' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Mate' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" rel="alternate stylesheet" href="../dist/css/lightbox.min.css">
<title>MSternefeld</title>
</head>
<body>
<header>
<ul class="nav">
<ul>
<li>Marianna E. Sternefeld</li>
<li><a href = "./index.html">Home</a></li>
<li><a href = "./about.html">About Me</a></li>
<li><a href = "./resume.html">Resume/Portfolio</a></li>
<li><a href = "./contact.php">Contact Me</a></li>
<li class="icon">
<a href="javascript:void(0);" onclick="myFunction()">☰</a>
</li>
</ul>
</ul>
</header>
<div id="wrapper">
<div id="onecol">
<h5>My Current Resume: <a href="./MESResume.pdf" id="link">View</a></h5>
<br />
<br />
<h5>Projects:</h5>
<table>
<tr>
<td id="tablePort">
<a href="/codefucious"><img src="pictures/Portfolio/code.png" width= "250px" height = "auto"/></a>
<br />Codefucious: This was a project for WiCHacks 2016. I learned to utilize JavaScript for the storybook portion of the site under "Learn Java." Also found on my GitHub.<br />
</td>
<td id="tablePort">
<a href = "http://michaelabutler.net/OnceUponACoder/index.html"><img src="pictures/Portfolio/coder.png" width= "250px" height = "auto"/></a><br />
Once Upon A Coder: This was a project for WiCHacks 2015. I joined the team late but was able to help with research and putting together some of the pages.<br />
</td>
</tr>
</table>
<br />
<h5>Portfolio:</h5>
Here is a slideshow of my graphic art projects over the years. The examples below are original artworks.<br />
<a class="example-image-link" href="pictures/Portfolio/TigerIceCream.jpg" data-lightbox="portfolioPictures" data-title="2012. Graphic Art. Showcased in the Sussex County Teen Arts Festival."><img class="example-image" src="pictures/Portfolio/portfolioStart.png" width= "250px" height = "auto" alt=""/></a>
<a class="example-image-link" href="pictures/Portfolio/color.png" data-lightbox="portfolioPictures" data-title="2011. Graphic Art. Showcased in the Sussex County Teen Arts Festival. Picked to be shown around Sussex County."></a>
<a class="example-image-link" href="pictures/Portfolio/eye.png" data-lightbox="portfolioPictures" data-title="2010. Graphic Art. Showcased in the Sussex County Teen Arts Festival."></a>
<a class="example-image-link" href="pictures/Portfolio/ulysses.jpg" data-lightbox="portfolioPictures" data-title="Used for a project in 2011 for a class."></a>
</div>
<footer>
<section>
Copyright © Marianna Sternefeld. All rights reserved.
<a href="https://github.com/mesternefeld"><img src="pictures/icons/iconmonstr-github-1-24.png" id="social"></a><a href="https://www.linkedin.com/in/mesternefeld"><img src="pictures/icons/iconmonstr-linkedin-4-24.png" id="social"></a><a href="mailto:marianna@sternefeld.com"><img src="pictures/icons/iconmonstr-email-10-24.png" id="social"></a><a href="https://www.facebook.com/MariannaErikaS"><img src="pictures/icons/iconmonstr-facebook-4-24.png" id="social"></a>
</section>
</footer>
</div>
<script>
function myFunction() {
document.getElementsByClassName("nav")[0].classList.toggle("responsive");
}
</script>
<script src="../dist/js/lightbox-plus-jquery.min.js"></script>
</body>
</html>