Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created October 23, 2023 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/551bef805fcd3bcd217b0d9543b1e3fb to your computer and use it in GitHub Desktop.
Save bjoerntx/551bef805fcd3bcd217b0d9543b1e3fb to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Sample HTML</title>
<style>
h1 {
color: red;
font-size: 16pt;
margin-bottom: 20px;
}
p {
color: blue;
text-align: center;
border: 1px solid black;
padding: 20px;
}
a {
color: green;
font-weight: bold;
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Sample HTML Page</h1>
<p>This is a sample HTML page with CSS.</p>
<p>For more information, please visit <a href="https://www.textcontrol.com">Text Control</a>.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment