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