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