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