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