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