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