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