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