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