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