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