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