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