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