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