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