TheConeHead
Programmer
anyone know of a font that has the copyright symbol in it?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Ummmm.... no... that is an ampersand
I was curious if any knew of a font (ie webdings) that had that symbol... thanks anyway
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL] xml:lang="en" lang="en">
<head><title>Low Bandwidth Graphics</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<style>
.reg {font-size:20px; font-family:monospace; color:silver}
.ot0 {font-size:60px; font-family:Arial; color:black}
.ot1 {font-size:60px; font-family:Webdings; color:blue}
.ot2 {font-size:60px; font-family:Wingdings; color:red}
.ot3 {font-size:60px; font-family:Wingdings 2; color:green}
.ot4 {font-size:60px; font-family:Wingdings 3; color:purple}
.ot5 {font-size:60px; font-family:MS Reference Specialty; color:Sienna}
</style></head>
<body><div align='center'><table border='1px'>
<script language="JavaScript" type="text/javascript">
document.write("<tr><th>Code this:</th><th>Arial</th>");
document.write("<th>Webdings</th><th>Wingdings</th><th>Wingdings 2</th>");
document.write("<th>Wingdings 3</th><th>MS Reference<br />Specialty</th></tr>");
for (i=33;i<256;++i) {
disp = "<tr><th><span class='reg'>&#"+i+";</span></th>"+"<th><span class='ot0'>"+"&#"+i+";</span></th>"+"<th><span class='ot1'>"+"&#"+i+";</span></th>"+"<th><span class='ot2'>"+"&#"+i+";</span></th>"+"<th><span class='ot3'>"+"&#"+i+";</span></th>"+"<th><span class='ot4'>"+"&#"+i+";</span></th>"+"<th><span class='ot5'>"+"&#"+i+";</span><br /></th></tr>";
document.write(disp);
}
i=8226;
disp = "<tr><th><span class='reg'>&#"+i+";</span></th>"+"<th><span class='ot0'>"+"&#"+i+";</span></th>"+"<th><span class='ot1'>"+"&#"+i+";</span></th>"+"<th><span class='ot2'>"+"&#"+i+";</span></th>"+"<th><span class='ot3'>"+"&#"+i+";</span></th>"+"<th><span class='ot4'>"+"&#"+i+";</span></th>"+"<th><span class='ot5'>"+"&#"+i+";</span><br /></th></tr>";
document.write(disp);
for (i=8592;i<8598;++i) {
disp = "<tr><th><span class='reg'>&#"+i+";</span></th>"+"<th><span class='ot0'>"+"&#"+i+";</span></th>"+"<th><span class='ot1'>"+"&#"+i+";</span></th>"+"<th><span class='ot2'>"+"&#"+i+";</span></th>"+"<th><span class='ot3'>"+"&#"+i+";</span></th>"+"<th><span class='ot4'>"+"&#"+i+";</span></th>"+"<th><span class='ot5'>"+"&#"+i+";</span><br /></th></tr>";
document.write(disp);
}
for (i=9824;i<9831;++i) {
disp = "<tr><th><span class='reg'>&#"+i+";</span></th>"+"<th><span class='ot0'>"+"&#"+i+";</span></th>"+"<th><span class='ot1'>"+"&#"+i+";</span></th>"+"<th><span class='ot2'>"+"&#"+i+";</span></th>"+"<th><span class='ot3'>"+"&#"+i+";</span></th>"+"<th><span class='ot4'>"+"&#"+i+";</span></th>"+"<th><span class='ot5'>"+"&#"+i+";</span><br /></th></tr>";
document.write(disp);
}
</script></table></div></body></html>