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