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