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