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