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