Last active
March 5, 2024 00:04
-
-
Save kccnma/6055d189f8ada25143f9c70562c16943 to your computer and use it in GitHub Desktop.
Barebones html with essential HTML elements plus first list - John Doe Student Site
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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"> | |
</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