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