Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kccnma/6e753982f96c0d4f66f8cfcdc1d2e772 to your computer and use it in GitHub Desktop.
Save kccnma/6e753982f96c0d4f66f8cfcdc1d2e772 to your computer and use it in GitHub Desktop.
Barebones HTML with CSS - John Doe Student Site
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>John Doe</title>
<meta name="description" content="This is an example student website for John Doe, a fictional web design student.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Hi, I'm John</h1>
<p>I am a fictional web design student. This site is under construction. Soon, I will be posting my course assignments and portfolio here.</p>
<h2>My Courses:</h2>
<ul>
<li><a href="art128/index.html">ART 128 Interface Programming 1</a></li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment