Skip to content

Instantly share code, notes, and snippets.

@Spesm
Created September 27, 2018 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Spesm/eafdbe5188b941e633f057bf73047a90 to your computer and use it in GitHub Desktop.
Save Spesm/eafdbe5188b941e633f057bf73047a90 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<!-- Rest of the document goes here -->
<head>
<!-- Encoding in Unicode Transformation Format 8-bit -->
<meta charset="utf-8">
<!-- Tells device to keep original scale of website -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Page title for search engines, bookmarking and social media. Needs closing tag! -->
<title>About Me</title>
<!--[if lt IE 9]>
<script src="dist/html5shiv.js"></script>
<![endif]-->
</head><!-- Ends head -->
<body>
<!-- Page content goes here -->
<section class="container">
<section class="header">
<h1>About Sem</h1>
</section><!-- Ends header -->
<section class="image column">
<img src="img/sem tara.jpg" alt="Sem on Tara Mountain viewpoint">
</section><!-- Ends image -->
<section class="intro column">
<h2>Introduction</h2>
<p>Hello there, nice to meet you!</h2>
</section><!-- Ends intro -->
<section class="skill column">
<h3>My Skills</h3>
<ul id="skill-list">
<li>skill nr.1</li>
<li>skill nr.2</li>
<li>this gets repetitive</li>
</ul>
</section><!-- Ends skill section -->
<section class="main-text">
<h3>Douglas Adams Quote</h3>
<p>The fact that we live at the bottom of a deep gravity well, on the surface of a gas covered planet going around a nuclear fireball 90 million miles away and think this to be normal is obviously some indication of how skewed our perspective tends to be.</p>
</section><!-- Ends main text -->
</section><!-- Ends container section -->
</body><!-- Ends body -->
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment