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