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