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