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