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