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