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