Skip to content

Instantly share code, notes, and snippets.

@mc256
Last active September 17, 2018 03:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mc256/f1304e5a0456109e252b744a374f6b7a to your computer and use it in GitHub Desktop.
Save mc256/f1304e5a0456109e252b744a374f6b7a to your computer and use it in GitHub Desktop.

EECS1022 Lab1 Hints

Please be proud of what you wrote. Keep your code formatted.

HTML5

<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title></title>
</head>
<body>

</body>
</html>

Some Useful HTML Tags

  • Paragraph <p>Put Your Text Here</p>
  • Horizontal rule <hr>
  • Header <h1>Largest Header</h1> <h2>Second Largest Header</h2> ......
  • Link <a href="https://google.com/">This is a link to Google</a>
  • Image <img src="https://upload.wikimedia.org/wikipedia/commons/b/bb/Kittyply_edit1.jpg" alt="cat" />
  • List <ul> <li>item1</li> <li>item2</li> </ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment