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