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