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