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