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