Use on the webTotal Use [ 3685 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/2a07b1c9d78f2a99e122c5df70912f8a?family=PasadenaEF-MediumItalic" 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/2a07b1c9d78f2a99e122c5df70912f8a?family=PasadenaEF-MediumItalic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "PasadenaEF-MediumItalic";
src: url("https://db.onlinewebfonts.com/t/2a07b1c9d78f2a99e122c5df70912f8a.eot");
src: url("https://db.onlinewebfonts.com/t/2a07b1c9d78f2a99e122c5df70912f8a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/2a07b1c9d78f2a99e122c5df70912f8a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/2a07b1c9d78f2a99e122c5df70912f8a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/2a07b1c9d78f2a99e122c5df70912f8a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/2a07b1c9d78f2a99e122c5df70912f8a.svg#PasadenaEF-MediumItalic")format("svg");
}
2CSS rules to specify fonts
font-family: "PasadenaEF-MediumItalic";