I am exploring different font styles with doctype strict.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
I don't how important doctype is though.
It seems that most of the doctypes that I try simply are not working in any browser. For example the following all look the same in Opera:
Code:
<style type="text/CSS">
.a13
{font-family: Westminster, Helvetica, sans-serif;font-size:24px;color:orange;
}
.a14
{font-family: Tristan, Helvetica, sans-serif;font-size:24px;color:orange;
}
.a15
{font-family: "News Gothic MT", Helvetica, sans-serif;font-size:24px;color:orange;
}
.a17
{font-family: Tahoma, Helvetica, sans-serif;font-size:24px;color:orange;
}
</style>
<span class='a15'>test</span>
Am I writing them out wrong? Do they need to be installed manually? Does anyone happen to know where I can find a list of fonts that Opera recognizes or maybe how to test them? I ask, because I am becoming unsure that I am testing them correctly.
Bookmarks