0 votes
by (880 points)
I'm looking to change my font to blackadder for a pirate themed CYOA but i cant seem to make it work.

Ive tried:

font-family: "Blackadder ITC","Trebuchet MS", Helvetica, sans-serif, Times;

font-family: "Blackadder ","Trebuchet MS", Helvetica, sans-serif, Times;

font-family: "Black Adder ","Trebuchet MS", Helvetica, sans-serif, Times;

font-family: Black Adder ITC,"Trebuchet MS", Helvetica, sans-serif, Times;

font-family: "black_adder ITC","Trebuchet MS", Helvetica, sans-serif, Times;

 

nothing works

1 Answer

0 votes
by (159k points)
selected by
 
Best answer

If you mean this Blackadder ITC True Type Font then I believe that you will need to do the following:

1. Purchase a licence to use the True Type Font (TTF) as a Web Font.

2. Use a service like Font Squirrel's Webfont Generator to convert the TTF file into something like a WOFF file.

3. Use a @font-face CSS rule to access your new WOFF file from your HTML file.

@font-face {
	font-family: "Blackadder ITC";
	src: url("itcblkad.wott");
}

4. Assign the imported font to the element you want to style.

body {
    font-family: "Blackadder ITC";
}

 

by (44.7k points)

Monotype Imaging Inc. currently owns the ITC Blackadder font, so you can get that font and license it from them via. their MyFonts website here.

...