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