Skip to content

Instantly share code, notes, and snippets.

@domantasg
Created August 8, 2017 12:05
Show Gist options
  • Select an option

  • Save domantasg/6354ab9eeb91e1966f08834b2cff7b4b to your computer and use it in GitHub Desktop.

Select an option

Save domantasg/6354ab9eeb91e1966f08834b2cff7b4b to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>My HTML5 Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<h1>My Website</h1>
</header>
<main>
<section>
<header>
<h2>My Articles</h2>
</header>
<article>
<header>
<h2>An Article</h2>
</header>
<p class="inline-text-box">Left</p><p class="inline-text-box">Right</p>
</article>
</section>
</main>
<footer>
<p>Copyright &copy; 2017</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment