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