Last active
October 7, 2020 19:48
-
-
Save mrtag23/8da9a2c178c35e90e955c245eceb9a2d to your computer and use it in GitHub Desktop.
Test typical html tags allowed for content editors.
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
<p>This is normal paragraph text with some <u>underlined</u>, <s>strikethrough</s>, <strong>bold</strong>and <em>italic</em>text. You can also use <a href="http://example.com/">links</a> to redirect people to other <a href="http://example.com/">places</a>. There are also headings you could use:</p> | |
<h1>Heading 1</h1> | |
<h2>Heading 2</h2> | |
<h3>Heading 3</h3> | |
<h4>Heading 4</h4> | |
<h5>Heading 5</h5> | |
<h6>Heading 6</h6> | |
<p>In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nulla facilisi. Maecenas ullamcorper, dui et placerat feugiat, eros pede varius nisi, condimentum viverra felis nunc et lorem. Vestibulum dapibus nunc ac augue. Sed cursus turpis vitae tortor.</p> | |
<p>Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Duis lobortis massa imperdiet quam. Sed in libero ut nibh placerat accumsan. Aenean vulputate eleifend tellus. Etiam imperdiet imperdiet orci.</p> | |
<p>Pellentesque libero tortor, tincidunt et, tincidunt eget, semper nec, quam. Praesent venenatis metus at tortor pulvinar varius. Proin sapien ipsum, porta a, auctor quis, euismod ut, mi. In dui magna, posuere eget, vestibulum et, tempor auctor, justo. Ut tincidunt tincidunt erat.</p> | |
<p>You can also group data in ordered lists like that:</p> | |
<ol> | |
<li>First item</li> | |
<li>Second item</li> | |
<li>Third item</li> | |
</ol> | |
<p>or unordered ones:</p> | |
<ul> | |
<li>random order item</li> | |
<li>another random item</li> | |
<li>and one more</li> | |
</ul> | |
<blockquote> | |
<p>Sometimes there's a need to quote a great person. You can always use a <strong>blockquote</strong> tag for that.</p> | |
<footer>by Great Person</footer> | |
</blockquote> | |
<hr /> | |
<p>Here's also a <sup>superscript</sup> and <sub>subscript </sub></p> | |
<hr /> | |
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;" summary="Table summary"> | |
<caption>Table caption</caption> | |
<thead> | |
<tr> | |
<th scope="col">Table Heading</th> | |
<th scope="col">Table Heading</th> | |
<th scope="col">Table Heading</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>Table cell content</td> | |
<td>Table cell content</td> | |
<td>Table cell content</td> | |
</tr> | |
<tr> | |
<td>Table cell content</td> | |
<td>Table cell content</td> | |
<td>Table cell content</td> | |
</tr> | |
</tbody> | |
</table> | |
<hr /> | |
<iframe width="560" height="315" src="https://www.youtube.com/embed/1OC5NSRW9Lw" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | |
<hr /> | |
<figure> | |
<img src="https://via.placeholder.com/150" | |
alt="Example of figure"> | |
<figcaption>Example of figure</figcaption> | |
</figure> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment