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