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