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