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