Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>It's okay to use the <code>style</code> attribute for elements:</p> <pre><code>This is &lt;span style="color: red;"&gt;red text&lt;/span&gt;. </code></pre> <p>If users are limited to only some options, you can use <code>class</code>es:</p> <pre><code>This is &lt;span class="red"&gt;red text&lt;/span&gt;. </code></pre> <p>Be sure to use semantic HTML elements:</p> <pre><code>This is &lt;strong&gt;strong and &lt;em class="blue"&gt;emphasized&lt;/em&gt;&lt;/strong&gt; text with a &lt;a href="http://www.google.com" rel="external"&gt;link&lt;/a&gt;. </code></pre> <p>Common semantic elements and their user-space terms:</p> <ul> <li><code>&lt;p&gt;</code> (paragraphs)</li> <li><code>&lt;strong&gt;</code> (bold)</li> <li><code>&lt;em&gt;</code> (italic)</li> <li><code>&lt;blockquote&gt;</code> (quotes)</li> <li><code>&lt;ul&gt;</code> and <code>&lt;ol&gt;</code> with <code>&lt;li&gt;</code> (lists)</li> <li>More...?</li> </ul> <p>Likely less common in forum posts, but still usable semantic elements:</p> <ul> <li><code>&lt;h1&gt;</code>, <code>&lt;h2&gt;</code>, etc. (headings; be sure to start at a value so your page makes sense)</li> <li><code>&lt;del&gt;</code>, and, to a lesser extent, <code>&lt;ins&gt;</code> (strikeout)</li> <li><code>&lt;sup&gt;</code> and <code>&lt;sub&gt;</code> (superscript and subscript, respectively)</li> <li><code>&lt;dl&gt;</code> with <code>&lt;dt&gt;</code> and <code>&lt;dd&gt;</code> (list of pairs)</li> <li><code>&lt;address&gt;</code> (contact information)</li> <li>More...</li> </ul>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload