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