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