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