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