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