Skip to content

Instantly share code, notes, and snippets.

@ellathur
Created December 7, 2016 18:18
Show Gist options
  • Save ellathur/3c5b1e5824ebf02bd74dceb812369b0e to your computer and use it in GitHub Desktop.
Save ellathur/3c5b1e5824ebf02bd74dceb812369b0e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About Christian</title>
<!--[if lt IE9]>
<script src="dist/html5shiv.js"></script>
<![endif]-->
<link rel="stylesheet" href="css/normalize.css" media="screen" title="no title">
<link rel="stylesheet" href="css/about_styles.css" media="screen" title="no title">
</head>
<body>
<div class="container">
<div class="header">
<h1> About Christian</h1>
</div><!--end header-->
<div class="image column">
<img class="chrisflying" src="img/chris.jpg" alt="chris">
<!--img src="img/coffee.jpg" width="400" height="400"alt="coffee cup" /-->
</div><!--/image-->
<div class="intro column">
<h2>Introduction</h2>
<p>
I studied Architecture and also graduated from the University of Birmingham withan MSc in Contruction Management. I have been working in the biotech industry in various roles for the past 7 years. I am currently a biotechnologist and looking to sneak into web development
</p>
</div><!--/intro-->
<div class="skillls column">
<h3>My Skills</h3>
<ul id="skills-list">
<li>Biotechnology</li>
<li>Architecture and Construction</li>
<li> some other</li>
</ul>
</div>
<div class="main-text">
<h3>My story</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
</div><!--end container-->
</body>
</html>
* { box-sizing: border-box; }
.container {
width: 80%;
margin: 0 auto;
}
.header h1 {
text-align: center;
margin: 100px 0px;
}
.image {
display: inline-block;
float: left;
}
.chrisflying{
width: 100%;
}
.column {
display: inline-block;
float: left;
width: 30%;
padding: 0 20px;
}
.main-text {
position: relative;
clear: both;
padding-top: 60px;
}
@ellathur
Copy link
Author

ellathur commented Dec 7, 2016

EX1.4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment