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