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