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