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