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