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