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