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