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