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