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