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