Skip to content

Instantly share code, notes, and snippets.

@kccnma
Last active March 4, 2024 23:55
Show Gist options
  • Save kccnma/15ef80c933568116c94e4eef5ef3c42e to your computer and use it in GitHub Desktop.
Save kccnma/15ef80c933568116c94e4eef5ef3c42e to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>This is a Title</title>
<meta name="description" content="A simple HTML web page with commonly used html markup elements.">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>This is a Heading 1</h1>
<h2>This is a Heading 2</h2>
<h3>This is a Heading 3</h3>
<p>This is a paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</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>
<ol>
<li>This is an Ordered List Item</li>
<li>This is an Ordered List Item</li>
<li>This is an Ordered List Item</li>
</ol>
<p>This is a <a href="#">link</a>.</p>
<img src="http://placehold.it/1500x500" alt="This is an image" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment