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