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