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