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