Skip to content

Instantly share code, notes, and snippets.

@kccnma
Last active January 13, 2020 23:41
Show Gist options
  • Save kccnma/7f409cd8739c36026d93225595255ed7 to your computer and use it in GitHub Desktop.
Save kccnma/7f409cd8739c36026d93225595255ed7 to your computer and use it in GitHub Desktop.
Bare bones essential HTML + CSS with a list 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" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Summer 2019</h1>
<p>I created this site as part of my summer project at Iolani.</p>
<ul>
<li>This is an Unordered List Item</li>
<li>This is an Unordered List Item</li>
<li>This is an Unordered List Item</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment