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