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