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