Wednesday, September 21, 2011

How to Make an Arrow Symbol HTML



Here are the two most popular ways to make the arrow symbol in html code.

Style #1:



« (left) 
<p> 
&laquo; My Great Company </p>
»(right)
<p> &raquo; My Great Company </p>


Style #2:


« (left) 
<p> 
&#171; My Great Company </p>
»(right)
<p> &#187; My Great Company </p>


Style #2 is preferred by most webmasters when making an arrow symbol in html because it is most compatible across all browsers.


How to Make the Registered Trademark Symbol HTML

Here are the two most popular ways to make the trademark symbol in html code.

Style #1:

<p> 
&reg; My Great Company </p>


Style #2:

<p> 
&#174; My Great Company </p>


Style #2 is preferred by most webmasters when making a registered trademark symbol in html because it is most compatible across all browsers.

How to Make a Copyright Symbol HTML Code

Here are the two most popular ways to make a copyright symbol in html code.

Style #1:

<p> &copy; 2011 Cool Company </p>


Style #2:

<p> &#169; 2011 Cool Company </p>


Style #2 is preferred by most webmasters because it is most compatible across all browsers.