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