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