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