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