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