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