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