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