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