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