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