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