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