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