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