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