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