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