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