Skip to content

Instantly share code, notes, and snippets.

@kccnma
Last active January 13, 2020 23:41
Show Gist options
  • Save kccnma/a8b62f5c417abb72143d6799c5ae289a to your computer and use it in GitHub Desktop.
Save kccnma/a8b62f5c417abb72143d6799c5ae289a to your computer and use it in GitHub Desktop.
Barebones html with essential HTML elements for Summer 2019 Web Design Fun Course
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Summer Site 2019</title>
<meta name="description" content="This is my Summer 2019 website." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
</head>
<body>
<h1>Summer 2019</h1>
<p>I created this site as part of my summer project at Iolani.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment