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