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