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