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