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