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