Created
January 13, 2015 17:40
-
-
Save chasestarr/0ea7432f3126ef38a684 to your computer and use it in GitHub Desktop.
online artists cheat sheet
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
<!--This is a comment :-) | |
Anything in this tag will not be read by the computer --> | |
<!-- Remember to include the html tag! it contains the rest of your code --> | |
<html> | |
<!-- info in the head will not show to the user, but it is read by the computer --> | |
<head> | |
<!-- This is the title for your website --> | |
<title>My awesome website!</title> | |
</head> | |
<!-- The "body" is where everything you want to show on screen goes--> | |
<body> | |
<!--The h1 tag changes the size of your text! --> | |
<h1>This is a heading</h1> | |
<!--contain chunks of text within paragraphs --> | |
<p>This is a paragraph.</p> | |
<p>This is another paragraph.</p> | |
<!--Below is a image tag. Be sure to fill in the "src" with an image link! --> | |
<img src="[image link from google]" width="200" height="200"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment