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