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