Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h2>Example of Del Element</h2>
<dl>
	<dt>HTML</dt>
<dd>HTML <del>simply</del> means HyperText Markup Language used in Web designing.</dd>
</dl>

<h2>Example of Ins Element</h2>
<h3>Insert with the Del element</h3>
		<dl>
			<dt>HTML</dt>
			<dd>HTML <del>simply means</del> <ins>can be defined as</ins> HyperText Markup Language, it is used in Web designing.</dd>
		</dl>
		
		<h3>Insert without the Del element</h3>
		<dl>
			<dt>HTML</dt>
			<dd>HTML <ins cite="https://kmacims.com.ng/group_policy/" datetime="2019-07-27">can be defined as</ins> HyperText Markup Language, it is used in Web designing.</dd>
		</dl>

		<h3>Insert with the Del element and styling</h3>
		<dl>
			<dt>HTML</dt>
			<dd>HTML <del style="text-decoration: none; background-color: red;">simply means</del> <ins style="text-decoration: none; background-color: yellow;">can be defined as</ins> HyperText Markup Language, it is used in Web designing.</dd>
		</dl>

<h2>Example of Strikethrough Element</h2>
<h3>Our Block Friday Prices</h3>
		<pre style="font-family: 'Times New Roman';">
			<ul>
				<li>HP 255 Ci3	<s>N90, 000.00</s>	<b>N82, 999.99</b></li>
				<li>HP Pavilion	<s>N135, 000.00</s>	<b>N125, 999.99</b></li>
				<li>HP 15 Ci3	<s>N130, 000.00</s>	<b>N119, 999.99</b></li>
				<li>HP 250 Ci7	<s>N137, 000.00</s>	<b>N127, 999.99</b></li>
				<li>HP 250 Ci3	<s>N106, 000.00</s>	<b>N92, 999.99</b></li>
			</ul>
		</pre>

<h2>Example of Small Element</h2>
  <p>
			The contents of our website is free, except in places where membership may be required. Where you are confused on what actions to take, quickly contact us, we are waiting eagerly to hear from you.
			<p><small>To use the content of our websites you agree to our <a href="https://kmacims.com.ng/privacy-policy">Privacy Policy</a> and <a href="https://kmacims.com.ng/terms-and-conditions">Terms and Conditions</a></small></p>
		</p>


<h2>Example of Sup and Sub Elements</h2>
<p>Convert 10101<sub>2</sub> to a number in base 10</p>
<p>Factorize the following: X<sup>2</sup> + 2X - 9 = 0</p>


<h2>Example of the Underline Element</h2>
<h3>Without Styling</h3>
		<p>It is not a <u>naw thig thta</u> <span>politics</span> in <span>Nigeria</span> is for the risk takers.</p>

		<h3>With Styling</h3>
		<p>It is not a <u style="text-decoration: red dotted underline">naw thig thta</u> <span>politics</span> in <span>Nigeria</span> is for the risk-takers.</p>

<h2> Example of Wbr Element</h2>
<p style="font-size:32px">The writer used so many difficult words which a lot of readers will not understand, including words like gwongwo<wbr>zoli<wbr>kwa<wbr>tiously<wbr>calistical. You can look up some of the words here https://www.kmacinformationmanagementsystems.computer.org/<wbr>dictionary_words/glossary_of_difficult_words/<wbr>authors_definition.aspx?<p>
              
            
!

CSS

              
                
              
            
!

JS

              
                
              
            
!
999px

Console