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