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