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