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