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