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