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