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