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