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