Advertisement
Guest User

Cut & Paste markup test

a guest
May 22nd, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.33 KB | None | 0 0
  1. <h2>Cut &amp; Paste</h2>
  2. Everything on this page was cut &amp; paste from a formatting test page based on the <a href="https://codex.wordpress.org/Theme_Unit_Test">WordPress Theme Unit Test</a>. Everything was pasted using the visual editor (not as HTML).
  3. <h2>Tables</h2>
  4. <table>
  5. <thead>
  6. <tr>
  7. <th>Employee</th>
  8. <th>Salary</th>
  9. <th></th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <tr>
  14. <th><a href="http://example.org/">John Doe</a></th>
  15. <td>$1</td>
  16. <td>Because that's all Steve Jobs needed for a salary.</td>
  17. </tr>
  18. <tr>
  19. <th><a href="http://example.org/">Jane Doe</a></th>
  20. <td>$100K</td>
  21. <td>For all the blogging she does.</td>
  22. </tr>
  23. <tr>
  24. <th><a href="http://example.org/">Fred Bloggs</a></th>
  25. <td>$100M</td>
  26. <td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>
  27. </tr>
  28. <tr>
  29. <th><a href="http://example.org/">Jane Bloggs</a></th>
  30. <td>$100B</td>
  31. <td>With hair like that?! Enough said...</td>
  32. </tr>
  33. </tbody>
  34. </table>
  35. <h2>Definition Lists</h2>
  36. <dl>
  37.     <dt>Definition List Title</dt>
  38.     <dd>Definition list division.</dd>
  39.     <dt>Startup</dt>
  40.     <dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd>
  41.     <dt>#dowork</dt>
  42.     <dd>Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.</dd>
  43.     <dt>Do It Live</dt>
  44.     <dd>I'll let Bill O'Reilly will <a title="We'll Do It Live" href="https://www.youtube.com/watch?v=O_HyZ5aW76c">explain</a> this one.</dd>
  45. </dl>
  46. <h2>HTML Tags</h2>
  47. These supported tags come from the WordPress.com code <a title="Code" href="http://en.support.wordpress.com/code/">FAQ</a>.
  48.  
  49. <strong>Address Tag</strong>
  50.  
  51. <address>1 Infinite Loop
  52. Cupertino, CA 95014
  53. United States</address><strong>Cite Tag</strong>
  54.  
  55. "Code is poetry." --<cite>Automattic</cite>
  56.  
  57. <strong>Preformatted Tag</strong>
  58.  
  59. This tag styles large blocks of code.
  60. <pre>.post-title {
  61.     margin: 0 0 5px;
  62.     font-weight: bold;
  63.     font-size: 38px;
  64.     line-height: 1.2;
  65.     and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
  66. }</pre>
  67. <strong>Quote Tag</strong>
  68.  
  69. <q>Developers, developers, developers...</q> --Steve Ballmer
  70.  
  71. <strong>Variable Tag</strong>
  72.  
  73. This allows you to denote <var>variables</var>.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement