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