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