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