0 added
0 removed
Original
2026-01-01
Modified
2026-03-09
1
<p>You wanted to list the tags in the new text. And you also wanted to make sure that they looked the same in the browser as they do in the code. Take <h1> or <p>, for example. This is not an easy task.</p>
1
<p>You wanted to list the tags in the new text. And you also wanted to make sure that they looked the same in the browser as they do in the code. Take <h1> or <p>, for example. This is not an easy task.</p>
2
<p>Some of the characters in HTML are reserved, meaning that the browser will interpret them as HTML code. For example, any text after the<i>less than</i>sign (<) in the browser will be interpreted as a tag and will not be displayed on the page.</p>
2
<p>Some of the characters in HTML are reserved, meaning that the browser will interpret them as HTML code. For example, any text after the<i>less than</i>sign (<) in the browser will be interpreted as a tag and will not be displayed on the page.</p>
3
<p>How can special characters (such as, for example, the<i>greater than</i>and<i>less than</i>signs) be used in the page text like normal characters? In order to do this, you should replace them with mnemonic characters.</p>
3
<p>How can special characters (such as, for example, the<i>greater than</i>and<i>less than</i>signs) be used in the page text like normal characters? In order to do this, you should replace them with mnemonic characters.</p>
4
<p>Mnemonics are special codes that begin with an ampersand (&) and end with a semicolon (;). For example, the<i>less than</i>sign can be inserted into a page using the &lt; (less than) mnemonic name, where as the<i>greater than</i>sign is represented by the &gt; (greater than) mnemonic name:</p>
4
<p>Mnemonics are special codes that begin with an ampersand (&) and end with a semicolon (;). For example, the<i>less than</i>sign can be inserted into a page using the &lt; (less than) mnemonic name, where as the<i>greater than</i>sign is represented by the &gt; (greater than) mnemonic name:</p>
5
&lt;<b>ul</b>&gt; &lt;/<b>ul</b>&gt;<p>This code is displayed in the browser as follows:</p>
5
&lt;<b>ul</b>&gt; &lt;/<b>ul</b>&gt;<p>This code is displayed in the browser as follows:</p>
6
<p><ul> </ul></p>
6
<p><ul> </ul></p>
7
<p>There are many other mnemonic names for special characters. For example: &copy;, &laquo;, &raquo;, &sect;. The complete list of mnemonic names is presented on a <a>special page</a>.</p>
7
<p>There are many other mnemonic names for special characters. For example: &copy;, &laquo;, &raquo;, &sect;. The complete list of mnemonic names is presented on a <a>special page</a>.</p>