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