Demo: Difference between revisions

From MillerSql.com
Shuttershades (talk | contribs)
No edit summary
Shuttershades (talk | contribs)
Page blanked via Python script (User Request)
Tags: Blanking Manual revert
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div style="background-color: #eef; padding: 10px; border: 1px solid #99f;">
== HTML Support Test Page ==
This page tests various HTML tags to see what is allowed on this wiki.
<img class="mw-logo-icon" src="/wiki/images/b/bc/Logo_240917.svg" alt="" aria-hidden="true" height="50" width="50">
=== Text Formatting ===
* Bold: <b>Bold Text</b>
* Italic: <i>Italic Text</i>
* Underline: <u>Underline Text</u>
* Strike: <s>Strike Text</s>
* Subscript: H<sub>2</sub>O
* Superscript: E=mc<sup>2</sup>
* Small: <small>Small Text</small>
* Big: <big>Big Text</big>
* Preformatted: <pre>Code Block</pre>
* Blockquote: <blockquote>Blockquote Text</blockquote>


=== Structure & Layout ===
<div>
  <h4>Div Container</h4>
  <p>Paragraph inside a div.</p>
  <hr>
  <span>Span element with style.</span>
</div>
=== Lists (HTML) ===
<ul>
  <li>Unordered List Item 1</li>
  <li>Unordered List Item 2</li>
</ul>
<ol>
  <li>Ordered List Item 1</li>
  <li>Ordered List Item 2</li>
</ol>
=== Table (HTML) ===
<table border="1" style="border-collapse: collapse;">
  <thead>
    <tr>
      <th>Header 1</th>
      <th>Header 2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Row 1 Col 1</td>
      <td>Row 1 Col 2</td>
    </tr>
    <tr>
      <td>Row 2 Col 1</td>
      <td>Row 2 Col 2</td>
    </tr>
  </tbody>
</table>
<small>Generated by Python Script</small>
</div>

Latest revision as of 07:44, 28 November 2025