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