Last active
April 10, 2018 14:23
-
-
Save agrublev/690baabdee7aeceed89052e12e623b02 to your computer and use it in GitHub Desktop.
1- intro html
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> <!-- What type of document type? Html of course! --> | |
<html> <!-- Our html element holds all the html we'll need --> | |
<head> <!-- the Head holds the meta information such as the title --> | |
<title> <!-- What shows up in the browser's tab name --> | |
Title | |
</title> | |
</head> | |
<body> <!-- ALL our visible html code goes here --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment