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