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