Created
January 13, 2018 21:31
-
-
Save felipeblini/de2311b2ff6987cb5ea358144fc91919 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/fibotix
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> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<dl> | |
<dt>name 1</dt> | |
<dt>name 2</dt> | |
<dd>value for 1 and 2</dd> | |
<dt>name 3</dt> | |
<dd>value for 3</dd> | |
<dd>value for 3</dd> | |
</dl> | |
<div> | |
<span>oi</span><!-- | |
--><span>oioioi</span> | |
</div> | |
<p>I like to write <abbr title="Hypertext Markup Language">HTML</abbr>!</p> | |
<ins>New Text</ins> | |
<del>Deleted Text</del> | |
<sup>superscript here</sup> | |
<sub>superscript here</sub> | |
<!-- Use an HTML comment to nullify the newline character below: --> | |
<a href="#">I hope there will be no extra whitespace after this!</a> | |
<!----><button>Foo</button> | |
<hr> | |
<!-- Without it, you can notice a small formatting difference: --> | |
HTML5 Notes for Professionals 26 | |
<a href="#">I hope there will be no extra whitespace after this!</a> | |
<button>Foo</button> | |
<div> | |
<span>oi</span><button>oiiii</button> | |
</div> | |
<em></p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment