ID:270171
 
what are some of the font styles?i want a font style that is like arial black(like usual except thicker letters)
Open MSN Messenger or Microsoft Word. Whole list ;)
In response to Mysame
what about wordpad and notepad?
In response to Mysame
Question: How would you put this in the code?

--Vito
In response to Vito Stolidus
You could use the style attribute.

Example:
client/script = {"
<STYLE>
BODY {font: 8px verdana}
</STYLE>
"}


--XxDohxX
In response to XxDohxX
*sees blank space when the above is added to browser window text*

Huh? My nice words all went away!

--Vito
In response to Vito Stolidus
Odd, seems to work for my environment perfectly. You must of did something wrong.
In response to XxDohxX
var/const/Info = {"<body bgcolor=#665218><font color=701010><STYLE>
BODY {font: 8px verdana}<center>---<b>(((}{)))</b>---</font><br><br></STYLE>


That's what I got, text replaced by the (((}{))).


--Vito
In response to Vito Stolidus
Text and HTML go outside of <STYLE> tags, you had them inside. And when you are using hexadecimal, I'm pretty sure you need # infront of it at all times.


var/const/Info = {"<STYLE>
BODY {
font: 8px verdana;
background:#665218;
color:#701010;
}</STYLE><center>---<b>(((}{)))</b>---<br><br></center>"}



And if you look inside the <STYLE> you can predefine background color and font color.


~Chee
In response to Cheetoz
Yuck, you shouldn't use <STYLE> inside of tags like that outside of client/script anyways.

var/const/Info={"
<html>
<head>
<style type="text/css">
body{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 8px;
}
</style>
</head>
<body>
Text.
</body>
</html>
"}
In response to Artemio
Well, guess I learn something new everyday. I'm still trying to grasp HTML and CSS, thanks for the tip. =P
In response to Artemio
Artemio wrote:
Yuck, you shouldn't use <STYLE> inside of tags like that outside of client/script anyways.

If you can avoid it anyway. I do this in Incursion because it's the only way to achieve my desired results--yet.

Lummox JR
In response to XxDohxX
Better than using client/script is setting up a .dms file. It's easier to manage, plus you can also use that same file (after the style section) to set up macros.

Lummox JR