Use on the webTotal Use [ 6545 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/316621b365110ce014c96c377e25d40c?family=opyright+%28c%29+2015+by+Hindra+permana.+All+rights+reserved." 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/316621b365110ce014c96c377e25d40c?family=opyright+%28c%29+2015+by+Hindra+permana.+All+rights+reserved.);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "opyright (c) 2015 by Hindra permana. All rights reserved.";
src: url("https://db.onlinewebfonts.com/t/316621b365110ce014c96c377e25d40c.eot");
src: url("https://db.onlinewebfonts.com/t/316621b365110ce014c96c377e25d40c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/316621b365110ce014c96c377e25d40c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/316621b365110ce014c96c377e25d40c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/316621b365110ce014c96c377e25d40c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/316621b365110ce014c96c377e25d40c.svg#opyright (c) 2015 by Hindra permana. All rights reserved.")format("svg");
}
2CSS rules to specify fonts
font-family: "opyright (c) 2015 by Hindra permana. All rights reserved.";