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