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