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