Skip to content

Instantly share code, notes, and snippets.

@agrublev
Last active April 10, 2018 14:23
Show Gist options
  • Save agrublev/690baabdee7aeceed89052e12e623b02 to your computer and use it in GitHub Desktop.
Save agrublev/690baabdee7aeceed89052e12e623b02 to your computer and use it in GitHub Desktop.
1- intro html
<!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