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