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