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