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