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