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