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