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