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