Skip to content

Instantly share code, notes, and snippets.

@ProProgrammer
Last active June 13, 2023 20:05
Show Gist options
  • Save ProProgrammer/72a87394affb0a70f54af6e6353e3c45 to your computer and use it in GitHub Desktop.
Save ProProgrammer/72a87394affb0a70f54af6e6353e3c45 to your computer and use it in GitHub Desktop.
Sample HTML File for a Docker tutorial
<!DOCTYPE html>
<html>
<head>
<title>Sample HTML File</title>
<style type="text/css">
body {
background-color: #37474f;
}
h1 b {
font-color: #000000;
}
</style>
</head>
<body>
<h3 style="color: #ffffff">Check out my profiles below</h3>
<hr/>
<table>
<tr>
<td>
<a href="https://www.youtube.com/user/appletechenthusiast" target="_blank">
<img src="https://www.freeiconspng.com/uploads/youtube-subscribe-red-png-8.png" style="width:84px;height:24px;" />
</a>
</td>
<td>
<a href="https://www.linkedin.com/in/deepsukhwani" target="_blank">
<img src="https://www.freeiconspng.com/uploads/linkedin-icon-19.png" style="width:36px;height:24px;" />
</a>
</td>
<td>
<a href="https://www.github.com/proprogrammer" target="_blank">
<img src="https://i1.wp.com/linuxnewbieguide.org/wp-content/uploads/2017/03/github-logo.png" style="width:84px;height:24px;" />
</a>
</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment