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