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