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