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