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