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