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