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