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