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