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