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