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