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