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