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