Skip to content

Instantly share code, notes, and snippets.

@attila5287
Created October 27, 2018 18:51
Show Gist options
  • Save attila5287/30f6756c33e6ac1eda246d645a04dc5e to your computer and use it in GitHub Desktop.
Save attila5287/30f6756c33e6ac1eda246d645a04dc5e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>My First Page</title>
</head>
<body>
<!-- Header -->
<h1>Hello World!</h1>
<!-- Image -->
<img src="http://en.spongepedia.org/images/thumb/3/33/Spongebob!!!.jpg/180px-Spongebob!!!.jpg" alt="Spongebob!" />
<br>
<!-- Link with New Tab -->
<a href="https://www.google.com" target="_blank">Opens new tab</a>
<br>
<!-- Bold Link -->
<strong><a href="https://www.youtube.com">This is a bold link</a></strong>
<br>
<!-- Placeholder link -->
<a href="#">This is placeholder link goes nowhere, for now</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment