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