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