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