Skip to content

Instantly share code, notes, and snippets.

@joelongstreet
Created March 25, 2013 18:55
Show Gist options
  • Save joelongstreet/5239607 to your computer and use it in GitHub Desktop.
Save joelongstreet/5239607 to your computer and use it in GitHub Desktop.
HTML Entities available on Jude.
<p>The article below shows common html entities and how each will render on the intranet. See the bottom for code used in this post.</p>
<br /><br />
<h2>Heading 1 or 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<br /><br /><br />
<h2>Paragraphs with Tags</h2>
<p>I'm afraid. I'm afraid, Dave. <del>John, my mind is failing. I can't feel it.</del> Dave, my mind is going. I can feel it. I can feel it. <strong>My mind is going</strong>. There is no question about it. I can feel it. I can feel it. I can feel it. I'm a... fraid. Good afternoon, gentlemen. <a href='http://en.wikipedia.org/wiki/HAL_9000' target='_blank'>I am a HAL 9000 computer</a>. I became operational at the H.A.L. plant in <em>Urbana, Illinois</em> on the 12th of January <a href="http://en.wikipedia.org/wiki/1992_United_States_men's_Olympic_basketball_team" target='_blank'>1992</a>. My instructor was Mr. Langley, and he taught me to sing a song. If you'd like to hear it I can sing it for you.</p>
<br /><br />
<h2>Unordered Lists</h2>
<ul>
<li>Hello, HAL. Do you read me, HAL?</li>
<li>Affirmative, Dave. I read you.</li>
<li>Open the pod bay doors, HAL.</li>
<li>I'm sorry, Dave. I'm afraid I can't do that.</li>
<li>What's the problem?</li>
<li>I think you know what the problem is just as well as I do.</li>
<li>What are you talking about, HAL?</li>
</ul>
<br /><br />
<h2>Ordered Lists</h2>
<ol>
<li>Hello, HAL. Do you read me, HAL?</li>
<li>Affirmative, Dave. I read you.</li>
<li>Open the pod bay doors, HAL.</li>
<li>I'm sorry, Dave. I'm afraid I can't do that.</li>
<li>What's the problem?</li>
<li>I think you know what the problem is just as well as I do.</li>
<li>What are you talking about, HAL?</li>
</ol>
<br /><br />
<h2>Tables</h2>
<table class='table table-striped table-bordered'>
<thead>
<tr>
<th>Name</th>
<th>Conception</th>
<th>Creator</th>
<th>Primary Function</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>HAL 9000</td>
<td>1992</td>
<td>University of Illinois Coordinated Science Laboratory</td>
<td>Assist in Space Travel</td>
<td>Mission failure and loss of life</td>
</tr>
<tr>
<td>Skynet</td>
<td>1994</td>
<td>Cyberdyne Systems</td>
<td>Global Digital Defense Network</td>
<td>Extermination of the Human race</td>
</tr>
<tr>
<td>Master Control Program</td>
<td>1982</td>
<td>ENCOM</td>
<td>Rule Encom's mainframe computer</td>
<td>Yet another Disney movie...</td>
</tr>
<tr>
<td>Deep Thought</td>
<td>1979</td>
<td>Little White Mice</td>
<td>Find the meaning of life</td>
<td>42</td>
</tr>
<tr>
<td>Siri</td>
<td>2011</td>
<td>Apple</td>
<td>Do what you tell it to do</td>
<td>Doesn't do what you tell it to do</td>
</tr>
</tbody>
</table>
<br /><br />
<h2>Blockquotes</h2>
<blockquote>Let me put it this way, Mr. Amor. The 9000 series is the most reliable computer ever made. No 9000 computer has ever made a mistake or distorted information. We are all, by any practical definition of the words, foolproof and incapable of error. </blockquote>
<blockquote> I know I've made some very poor decisions recently, but I can give you my complete assurance that my work will be back to normal. I've still got the greatest enthusiasm and confidence in the mission. And I want to help you. </blockquote>
<br /><br />
<h2>All Content Above was generated using:</h2>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment