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