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