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