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