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