Created
January 17, 2018 11:29
-
-
Save albach/5196b7a83e72d4423bbfe85a736d86c5 to your computer and use it in GitHub Desktop.
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Emmet</title> | |
</head> | |
<body> | |
<!-- The * operator will act as a multiplier --> | |
<!-- ol*2 --> | |
<ol></ol> | |
<ol></ol> | |
<!-- The + operator will create siblings (same level) --> | |
<!-- ol+ol --> | |
<ol></ol> | |
<ol></ol> | |
<!-- ol>li*2 --> | |
<ol> | |
<li></li> | |
<li></li> | |
</ol> | |
<!-- ol>li+li --> | |
<ol> | |
<li></li> | |
<li></li> | |
</ol> | |
<!-- ol>li+li>ul>li*8 --> | |
<ol> | |
<li></li> | |
<li> | |
<ul> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
<li></li> | |
</ul> | |
</li> | |
</ol> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment