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