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