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