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