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