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