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