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