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