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