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