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