-
-
Save kostasx/7b33efb9c12589a5c2b0546b58f17a18 to your computer and use it in GitHub Desktop.
LESSON 1-2
Html Basic Essential Markup
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> | |
<head> | |
<meta charset="utf-8"> | |
<title>Example page</title> | |
</head> | |
<body> | |
<h1>Hello world</h1> | |
<p>Lorem ipsum dolor sit amet, consectetur.</p> | |
<img src="http://placekitten.com/200/300"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment