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