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