HTML and CSS Reference
In-Depth Information
Table 4-1 lists some of the most common (and useful) characters you may need, and you can find more at
entitycode.com .
Table 4-1. Common character references
Character
Description
Entity
Numeric Reference
&
&
&
ampersand
<
<
<
less than
&gt;
&#62;
>
greater than
left single quotation mark &lsquo;
&#821
6;
'
&rsquo;
&#821
7;
'
right single quotation
mark (or apostrophe)
&ldquo;
&#8220;
left double quotation
mark
&rdquo;
&#8221
;
right double quotation
mark
&nbsp;
&#1
60;
non-breaking space
&hellip;
&#8230;
horizontal ellipsis
&bull;
&#8226;
bullet
&ndash;
&#821
1
-
en dash
&mdash;
&#821
2;
em dash
&copy;
&#1
69;
©
copyright
&trade;
&#8482;
trademark
&reg;
&#1
74;
®
registered trademark
Styling Content with CSS
A browser's built-in default style sheet gives most content the simple styling it needs to be at least
readable. Headings will appear at different sizes, list items will each appear on their own line with a
marker, an em is italicized, a strong is bold, and so on. But these minimal styles are just that: minimal .
They're intended for functional, utilitarian purposes, and aren't exactly attractive. You've seen many
examples of default browser styling in this chapter. It hasn't been pretty.
 
Search WWH ::




Custom Search