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