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