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