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