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