Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title></title>
</head>
<body>
<div id="header">
<p id="name">Gillian Reynolds-Titko</p>
<a href="mailto:you@yourdomain.com"><p id="email">gamrey@mat-mac.com</p></a>
</div>
<!--This is a comment. Comments are not displayed in the browser-->
<!---<div class="left"></div> removing this div-->
<div class="image">
<!--<img src="https://www.ravelry.com/images/splash/ravelry-logo-81r-300x.png"
align ="right" vspace="45"/>-->
<img src="https://images.pexels.com/photos/50711/board-electronics-computer-data-processing-50711.jpeg?h=350&auto=compress&cs=tinysrgb"
align="right" vspace="25"/>
</div>
<div class="contents">
<h4>Junior Software Developer</h4>
<p>Versatile team and project leader with experience in the
Former industrial physicist and team leader with experience working
in various domains: science (research and development), finance (business
productivity improvement) and business (technical intelligence).
Effective individual contributor with an ability to act as a liasion
between technology and business teams to understand needs and
implement solutions.</p>
<h4>Experience</h4>
<p>Student, Zip Code Wilmington (2017 - Present)</p>
<p> Team member, Wrlds, Inc (2016 - Present)</p>
<p>Library & Information Science Manager, E. I. du Pont de Nemours & Co (2014 - 2016)</p>
<p>Library & Information Science Supervisor, E. I. du Pont de Nemours & Co (2011 - 2014)</p>
<p>Research Investigator, E. I. du Pont deNemours & Co (2011 - 2011)</p>
<p>Accounts Receivable Management Consultant, E. I. du Pont de Nemours & Co (2009 - 2010)</p>
<p>Senior Research Phyiscist, E. I. du Pont de Nemours & Co (1999 - 2008)</p>
<!--<ul>
<li>Designed and implemented end-user features for Flagship Product</li>
<li>Wrote third-party JavaScript and Ruby libraries</li>
</ul>-->
<h4>Skills</h4>
<p>Object Oriented Design, Unit Testing</p>
<p>Languages: Java, JavaScript</p>
<!--<p>Frameworks: </p>-->
<h4>Education</h4>
<p>MBA, Finance, Drexel University</p>
<p>PhD, Physics, MIT</p>
<p>BA/MA, Physics, Hunter College of CUNY</p>
<h4>Certifications</h4>
<p>Data Science Specialization, Johns Hopkins University (via Coursera)</p>
<p>Six Sigma Black Belt</p>
<!--<ul>
<li>Award for best senior thesis</li>
<li>GPA: 3.8</li>
</ul>-->
</div>
<div id="footer">
<p>Newark, DE 19711 | https://github.com/Greyno</p>
</div>
</body>
</html>
105 changes: 105 additions & 0 deletions stylesheet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
div {
border-radius: 5px;
}

div.image {
width:100px; /*width of your image*/
height:100px; /*height of your image*/
/*background-image:url(https://www.ravelry.com/images/splash/ravelry-logo-81r-300x.png);*/
margin:0; /* If you want no margin */
padding-right:100px; /*if your want no padding */
float: right;
}

/*
img {
width:100px;
height:100px;
display: inline-block;
}*/

#header {
z-index: 1;
position: fixed;
width: 97.5%;
margin-top: -20px;
height: 60px;
background-color: #668284;
margin-bottom: 10px;
}

#name {
float:left;
margin-left: 5px;
padding-top: 5px;
font-size: 16px;
font-family: Verdana, sans-serif;
color: #ffffff;
}

#email{
float:right;
margin-right: 5px;
padding-top: 5px;
font-size: 16px;
font-family: Verdana, sans-serif;
color: #ffffff;
}

h4 {
margin-left: 5px;
margin-bottom: 15px;
font-family: Verdana, sans-serif;
}

.contents p {
margin-left: 5px;
margin-right: 5px;
margin-top: -10px;
font-family: Garamond, serif;
color: #000000;
}

li {
list-style-type: square;
}

a:hover {
font-weight: bold;
}

.left { <!--not using-->
position: relative;
float: left;
margin-top: 50px;
width: 10%;
height: 400px;
background-color: #B9D7D9;
margin-bottom: 10px;
}

.contents {
position: relative;
float: right;
margin-top: 50px;
width: 100%; <!--changed from 88%-->
height: 400px;
background-color: #F4EBC3;
margin-bottom: 10px;
}

#footer {
position: relative;
height: 50px;
background-color: #668284;
clear: both;
font-family: Verdana, sans-serif;
font-size: 14px;
text-align: center;
color: #ffffff;
}

#footer p {
position: relative;
padding-top: 15px;
}