Skip to content

Instantly share code, notes, and snippets.

@vainveins
Created September 28, 2016 02:11
Show Gist options
  • Save vainveins/1c7c8a9fb4f247b612da54885e634209 to your computer and use it in GitHub Desktop.
Save vainveins/1c7c8a9fb4f247b612da54885e634209 to your computer and use it in GitHub Desktop.
HTML WEEK1
//syntax of two side tag
<element> content </element>
//paragraph
<p> welcome to the prop shop </p>
//element containing other element
<p> Welcome to <em> Dave's Devil Sticks. </em> </p>
//An element that does not enclose content is an empty element
//and it is marked with a one-sided tag using the syntax
<element />
//ex. line break
<br />
===============
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment