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