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