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