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