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