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