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