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