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