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