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