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