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