Use on the webTotal Use [ 6750 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/59f9cb455b0f6bfcc94c8aafc9d89eac?family=PasadenaSerial-Italic" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/59f9cb455b0f6bfcc94c8aafc9d89eac?family=PasadenaSerial-Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "PasadenaSerial-Italic";
src: url("https://db.onlinewebfonts.com/t/59f9cb455b0f6bfcc94c8aafc9d89eac.eot");
src: url("https://db.onlinewebfonts.com/t/59f9cb455b0f6bfcc94c8aafc9d89eac.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/59f9cb455b0f6bfcc94c8aafc9d89eac.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/59f9cb455b0f6bfcc94c8aafc9d89eac.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/59f9cb455b0f6bfcc94c8aafc9d89eac.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/59f9cb455b0f6bfcc94c8aafc9d89eac.svg#PasadenaSerial-Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "PasadenaSerial-Italic";