Course List
Example
<h1>This is Title 2</h1>
<h2>This is Title 2</h2>
<h3>This is Title 3</h3>
<h4>This is Title 4</h4>
<h5>This is Title 5</h5>
<h6>This is Title 6</h6>
<h>Robinson Crusoe</h>
<p>Robinson Crusoe was born into a middle-class family in England. Against his parents' wishes, he gave up a comfortable life and a stable career and decided to go on an adventure at sea.</p>
Copy this code and try running it.
Code Running TestExample
<ul>
<li>Apple</li>
<li>Cabbage</li>
</ul>
<dl>
<dt>Apple</dt>
<dd>-Fruits</dd>
<dt>Cabbage</dt>
<dd>- Vegetables</dd>
</dl>
Copy this code and try running it.
Code Running TestExample
<a href="https://www.impressionnews.com/all-courses/">All Courses</a>
<img src="https://www.impressionnews.com/wp-content/uploads/2026/05/html-courseimage.webp" alt="HTML">
Copy this code and try running it.
Code Running Test<div>Example
<div class="box">
<h1>This is a title within a div element. </h1>
<p>This is some text. </p>
<p>This is the text within the div element. </p>
</div>
Copy this code and try running it.
Code Running Test<span>Example
<p>I have a pair of
<span style="color:blue">blue</span>
<span style="font-size:50px">big eyes</span>and <span style="color:gold">golden hair</span>
</p>
