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