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