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