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