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