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