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