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