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