basic html tags
by merganser
HTML
<h1>
Single Carrige Return - <br>
</h1>
<h3>
Code
</h3>
<p>
<pre>
<code contenteditable spellcheck="false">
First line of text <b><br></b> Second line of text
</code>
</pre>
</p>
<h3>
Renders
</h3>
<p>
First line of text <br> Second line of text
</p>
<hr>
<h1>
Double Carrige Return - <p></p>
</h1>
<h3>
Code
</h3>
<p>
<pre>
<code contenteditable spellcheck="false">
<b><p></b>
First line of text
<b></p></b>
<b><p></b>
Second line of text
<b></p></b>
</code>
</pre>
</p>
<h3>
Renders
</h3>
<p>
First line of text
</p>
<p>
Second line of text
</p>
<hr>
<h1>
Bold Text - <b></b>
</h1>
<h3>
Code
</h3>
<p>
<pre>
<code contenteditable spellcheck="false">
<b><b></b>
Bold text
<b></b></b>
</code>
</pre>
</p>
<h3>
Renders
</h3>
<b>
Bold text
</b>
<hr>
<h1>
Numbered List - <ol><li></li></ol>
</h1>
<h3>
Code
</h3>
<p>
<pre>
<code contenteditable spellcheck="false">
<b><ol></b>
<b><li></b>Item 1<b></li></b>
<b><li></b>Item 2<b></li></b>
<b></ol></b>
</code>
</pre>
</p>
<h3>
Renders
</h3>
<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol>
<hr>
<h1>
Bulleted List - <ul><li></li></ul>
</h1>
<h3>
Code
</h3>
<p>
<pre>
<code contenteditable spellcheck="false">
<b><ul></b>
<b><li></b> Item 1<b></li></b>
<b><li></b> Item 2<b></li></b>
<b></ul> </b>
</code>
</pre>
</p>
<h3>
Renders
</h3>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
CSS
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
body{font-family: 'Roboto', sans-serif;}
h1 {
font-size: 26px;
color: #666;
line-height: 1.5em;background-color: rgba(172, 197, 237, .25);
font-family: 'Roboto', sans-serif;
}