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