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