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