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