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