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