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