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