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