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