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