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