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