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