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