Quote:
|
Originally Posted by Sossity
I already found out how to type in the © symbol into the code, I could not figure out how to do that in html or css, I just knew the keyboard strokes for it. The instructor did not show us how to do this. Oh well, that was a past exercise but I wish I knew it then.
|
Continued from private message...
Most non-alphanumeric characters and symbols are created by using
& something ;
For example:
- copyright = ©
- M-dash = —
- n-dash = –
- bullet = •
- right arrow = →
- left arrow = ←
- non-breaking space =
You can also represent symbols with their ASCII code.
& #ascii ;
For example:
- bullet = • ; (the only one I know off-hand)
W3C schools has full lists:
If you're wondering why the code didn't turn into HTML on this post, it's because the forum doesn't support HTML in-post.
It's blocked for security purposes.