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