97 lines
3.5 KiB
HTML
97 lines
3.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Stephen Parkinson</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<style>
|
|
body,h1,h2,h3,h4,h5,h6 {font-family: "Raleway", sans-serif}
|
|
</style>
|
|
</head>
|
|
<body class="w3-light-grey w3-content" style="max-width:1600px">
|
|
|
|
<!-- Sidebar/menu -->
|
|
<nav class="w3-sidebar w3-collapse w3-white w3-animate-left" style="z-index:3;width:300px;" id="mySidebar"><br>
|
|
<div class="w3-container">
|
|
<a href="#" onclick="w3_close()" class="w3-hide-large w3-right w3-jumbo w3-padding w3-hover-grey" title="close menu">
|
|
<i class="fa fa-remove"></i>
|
|
</a>
|
|
<img src="/static/images/me.jpg" style="width:45%;" class="w3-round"><br><br>
|
|
<h4><b>Stephen Parkinson</b></h4>
|
|
<p class="w3-text-grey">Software Engineer</p>
|
|
</div>
|
|
<div class="w3-bar-block">
|
|
<a href="#about" onclick="w3_close()" class="w3-bar-item w3-button w3-padding"><i class="fa fa-user fa-fw w3-margin-right"></i>ABOUT</a>
|
|
</div>
|
|
<div class="w3-panel w3-large">
|
|
<a href="https://www.linkedin.com/in/stephen-parkinson/">
|
|
<i class="fa fa-linkedin w3-hover-opacity"></i>
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Overlay effect when opening sidebar on small screens -->
|
|
<div class="w3-overlay w3-hide-large w3-animate-opacity" onclick="w3_close()" style="cursor:pointer" title="close side menu" id="myOverlay"></div>
|
|
|
|
<!-- !PAGE CONTENT! -->
|
|
<div class="w3-main" style="margin-left:300px">
|
|
|
|
<!-- Header -->
|
|
<header id="portfolio">
|
|
<a href="#"><img src="/static/images/me.jpg" style="width:65px;" class="w3-circle w3-right w3-margin w3-hide-large w3-hover-opacity"></a>
|
|
<span class="w3-button w3-hide-large w3-xxlarge w3-hover-text-grey" onclick="w3_open()"><i class="fa fa-bars"></i></span>
|
|
<div class="w3-container">
|
|
<h1><b></b></h1>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- About -->
|
|
<div class="w3-row-padding w3-padding-16" id="about">
|
|
<div class="w3-col m6">
|
|
<img src="/static/images/trees.jpg" alt="A picture I took" style="width:100%">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="w3-container w3-padding-large" style="margin-bottom:32px">
|
|
<h4><b>About Me</b></h4>
|
|
<p>I'm doing a lot of stuff with computers right now.</p>
|
|
<hr>
|
|
</div>
|
|
|
|
<!-- Contact Section -->
|
|
<div class="w3-container w3-padding-large w3-grey">
|
|
<h4 id="contact"><b>Contact Me</b></h4>
|
|
<div class="w3-row-padding w3-center w3-padding-24" style="margin:0 -16px">
|
|
<div class="w3-third w3-dark-grey">
|
|
<a href="mailto:stephen@smpark.in">
|
|
<p><i class="fa fa-envelope w3-xxlarge w3-text-light-grey"></i></p>
|
|
<p>stephen@smpark.in</p>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="w3-black w3-center w3-padding-24">Powered by <a href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank" class="w3-hover-opacity">w3.css</a></div>
|
|
|
|
<!-- End page content -->
|
|
</div>
|
|
|
|
<script>
|
|
// Script to open and close sidebar
|
|
function w3_open() {
|
|
document.getElementById("mySidebar").style.display = "block";
|
|
document.getElementById("myOverlay").style.display = "block";
|
|
}
|
|
|
|
function w3_close() {
|
|
document.getElementById("mySidebar").style.display = "none";
|
|
document.getElementById("myOverlay").style.display = "none";
|
|
}
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|