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