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