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