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