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