Created
October 27, 2018 18:51
-
-
Save attila5287/30f6756c33e6ac1eda246d645a04dc5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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