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