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