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