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