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