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