Created
September 28, 2016 02:11
-
-
Save vainveins/1c7c8a9fb4f247b612da54885e634209 to your computer and use it in GitHub Desktop.
HTML WEEK1
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
//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