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