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