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