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