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