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