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