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