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