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