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