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