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