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