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