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