Skip to content

Instantly share code, notes, and snippets.

@git2thehub
Created June 19, 2023 22:53
Show Gist options
  • Save git2thehub/d63475bc6a33a7d6d6a50a5340dec5ce to your computer and use it in GitHub Desktop.
Save git2thehub/d63475bc6a33a7d6d6a50a5340dec5ce to your computer and use it in GitHub Desktop.
Very basic HTML page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A Body of Content</title>
</head>
<body>
<h1>I love coding</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Rerum dolorem inventore deserunt veritatis magni odit
dolor, obcaecati iure! Repellat ab optio nulla neque dolorum delectus saepe id laborum. Accusamus, expedita.</p>
<h2>I like this stuff</h2>
<ul>
<li>football</li>
<li>reading</li>
<li>coding HTML!</li>
</ul>
<h2>Activities For Tomorrow</h2>
<ol>
<li>wake up</li>
<li>walk the dogs</li>
<li>code!</li>
<li>eat</li>
<li>go to sleep</li>
</ol>
<a href="https://youtube.com">YouTube</a><br />
<img
src='https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSEHt_y93yyr0K91auu97DDEA7vVD9rSuD3uZeTiRaH9SabYO8-64fcWS8ycXQ&usqp=CAc'
alt=’flamingo’ />
<!-- talk about jpeg/svg/gif/png -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment