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