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