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