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