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