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