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