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