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