Skip to content

Instantly share code, notes, and snippets.

@samsonjs
Created April 29, 2014 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samsonjs/8818406d64c92b826d84 to your computer and use it in GitHub Desktop.
Save samsonjs/8818406d64c92b826d84 to your computer and use it in GitHub Desktop.
HTML test page
<h1>header 1</h1>
<h2>header 2</h2>
<h3>header 3</h3>
<h4>header 4</h4>
<h5>header 5</h5>
<h6>header 6</h6>
<p>paragraph</p>
<b>bold</b>
<strong>strong</strong>
<i>italic</i>
<em>emphasis</em>
<strike>strike through</strike>
<a href="http://mashable.com">link</a>
<img src="http://placehold.it/300x300">
<script>alert(1)</script>
<noscript>noscript</noscript>
<iframe src="http://samhuri.net" width=400 height=400></iframe>
<style>body {color:red}</style>
line<br>break
horizontal<hr>rule
<input type="text" value="" placeholder="no value"></input>
<input type="text" value="something" placeholder="has value"></input>
<input value='single quotes'>
<input value=noquotes></input>
<nobr>no line breaks here even if it gets really really really really really really really long</nobr>
<ul>
<li>unordered</li>
<li>list</li>
</ul>
<ol>
<li>ordered</li>
<li>list</li>
</ol>
<span>span</span>
<span style="color: blue">span with inline style</span>
<blockquote>block quote</blockquote>
<small>small</small>
<big>big</big>
<abbr title="abbreviation">abbr</abbr>
<acronym title="don't use this">acronym</acronym>
<sub>subscript</sub>
<sup>superscript</sup>
<pre>such pre
so formatted
wow text</pre>
<tt>typewriter or teletype</tt>
<table>
<tr><th>col 1</th><th>col 2</th></tr>
<tr><td>val 1</td><td>val 2</td></tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment