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