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