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