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