Skip to content

Instantly share code, notes, and snippets.

@AttyC
Last active August 29, 2015 14:18
Show Gist options
  • Save AttyC/640756d3169dd3dc4353 to your computer and use it in GitHub Desktop.
Save AttyC/640756d3169dd3dc4353 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>About Atty Cronin</title>
<!--[if lt IE 9]>
<script src="dist/html5shiv.js"></script>
<![endif]-->
<link href="css/normalize.css" rel="stylesheet" />
<link href="css/about_styles.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<div class="header">
<h1>About ...</h1>
</div>
<div class="image">
<img src="img/AttyC.jpg" alt="Atty Cronin portrait">
</div>
<div class="intro column">
<h2>This is an introduction</h2>
<p>Paragraph text goes here</p>
</div>
<div class="skills column">
<h3>My Skills</h3>
<ul id="skill-list">
<li>HTML</li>
<li>PHP</li>
<li>CSS</li>
</ul>
</div>
<div class="main_text">
<h3>My Story</h3>
<p>I cut my teeth on a travel web project, getting involved in all aspects: coding in HTML, CSS & PHP, helping to project manage, acting as a liaison with the travel sales staff, administrating bookings, creating HTML email newsletters and learning about SEO. </p>
<p>Moving to into magazine publishing, digital side, was very exciting, and tricky. I had to pick up a whole new set of skills, such as version control (subversion), OO PHP and Agile, which I loved.
</p>
</div>
</div><!--end container -->
</body>
</html>
* {
box-sizing: border-box;
}
body {
background-color: #fffeea;
color: #34495e;
}
.container {
width: 80%;
margin: 0 auto;
}
.header h1 {
text-align: center;
padding: 10px;
}
.image{
display: inline-block;
float: left;
}
.column {
display: inline-block;
float: left;
width:30%;
padding: 0 20px;
}
.main_text {
clear: both;
padding-top: 60px;
}
#skill-list {
margin-left: 50px;
}
.skills {
background-color: #5ad4c2;
color: #FFF;
padding: 1.2em;
}
.intro {
background-color: #00ffee;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment