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